PHP Tutorials Compilation Here are the list of our PHP Lessons and Tutorials Introduction to PHP scripting language PHP Tutorial – Learning the PHP Syntax PHP Tutorial – PHP Basic Data types PHP Variables PHP String Variable PHP if statement…
Tag: php lesson
PHP Tutorial – PHP $_GET and $_POST
PHP $_GET and $_POST The PHP $_GET and $_POST variables are used to retrieve information from forms, like user input. The $_POST Function The built-in $_POST function is used to collect values in a form with method=”post”. Information sent from…
PHP Tutorial – PHP Function
PHP Tutorial – PHP Function In this lesson we are going to learn how to create a function in PHP. A function is a block of codes that performs a particular task which can be executed anywhere in the page…
PHP Tutorial – PHP Arrays
PHP Tutorial – PHP Arrays An array is a special variable that can store multiple values in a single variable. The elements of the array are accessed via an index number, with the first element starting at zero. An array…