ABOUT PHP PHP is a server side scripting language that is used to develop Dynamic Web Applications. Its simplicity and lots of frameworks built around it makes it a favorite choice for applications developers. The purpose of this course is to train students in the usage of PHP and CMS Opencart , Magento , WordPress.…
Read MoreManaging Sessions & Cookies Before learning Sessions and Cookies you should know about HTTP and its Stateless process, Stateless means server doesn’t know about your previous requests as each request is treated new by the browser. So each time when you are browsing your personal account on the website, you have to login again? But…
Read MoreArrays in PHP An array is a data structure that stores similar type of values in a common variable. Arrays are also called homogeneous data type. For example if you want to store 50 numbers then instead of defining variables it is easy to define an array with size of 50. In PHP, the array()…
Read MoreThe behavior of unset() inside of a function can vary depending on what type of variable you are attempting to destroy. If a globalized variable is unset() inside of a function, only the local variable is destroyed. The variable in the calling environment will retain the same value as before unset() was called. Example <?php…
Read MoreThe require() and require_once() functions perform same work. Both functions will include and evaluates the specific file while executing the code. if include() is not able to find a specified file on location at that time it will throw a warning however, it will not stop script execution. For the same scenerio require() will throw…
Read MorePHP is an HTML-embedded server-side scripting language. The goal of the language is to allow web developers to write dynamically generated pages quickly. NTC Hosting offers its clients high quality PHP and HTML hosting services. Our servers are configured so as to ensure maximum performance for both your HTML and PHP-based applications and the non-interruptible…
Read MoreInheritance is a well-established programming principle, and PHP makes use of this principle in its object model. This principle will affect the way many classes and objects relate to one another. For example, when you extend a class, the subclass inherits all of the public and protected methods from the parent class. Unless a class…
Read MoreLaravel-5 Framework Training @ Webs Jyoti Laravel-5 Framework Training @ Webs Jyoti : Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern. Duration : 40 hrs for training related enquiry call us : 8802000175 Course Content Setup & Installation…
Read MoreThere are some certain ways to send your information or data to the PHP page- Using Form Methods – Get & Post Using Cookies & Session Using Query String / URL Rewriting Using Hidden form fieldForm MethodsThe GET Method: The GET method sends information separated by the ? Operator.Example: http://www.xyz.com/home.html?city=Gurgaon Please note that the GET…
Read MoreError handling is the process of catching errors from the program and then taking appropriate action. Before proceeding for error handling you should get to know how many types of errors occurred in PHP. Notices: These are non-critical errors that occurred while executing a script – for example, accessing a variable that has not yet…
Read More