The $_GET variable is used to gather values/data from a form or url.
Information sent using the $_GET varible is visible in the users web browser, for example http://yourdomain.com/?url=http://google.com which has defined http://google.com as the url.
So for example if i was to use the following php code:
<?php
print $_GET['url'];
?>
It will display the domain http://google.com.
You can change this [...]
You may have seen functions or you may not. Function() is a defined chunck of code set which can be executed when ever it is needed. A function() consists of a few simple steps.
All functions start with the word “function” followed by a related name for the function with “()” after it.
Insert { in the [...]
From:Â http://www.php.net/index.php#id2008-08-07-1Â
PHP 4.4.9 released!
The PHP development team would like to announce the immediate
     availability of PHP 4.4.9. It continues to improve the security and the
     stability of the 4.4 branch and all users are strongly encouraged to
     upgrade to it as soon as possible. This release wraps up all the
  [...]
If your wanting to learn php then your going to have to learn the basic’s first, and in every programming language theres always the basic ‘Hello World’ where it should display ‘Hello World’ either on the web page or in a software program. So today ill start with the ‘Hello World’Â
<?phpÂ
echo ‘Hello World’;Â
?>Â
Now change the [...]