PHP GET Variables
Posted by admin on 22 January, 2011
No comments yet
This item was filled under [ PHP & MySql, References ]
A GET Variable is a special kind of variable that is created through the URL. They can be created by passing parameters via the URL. Take for example the following URL: http://mywebsite.com/somefile.php?var1=value1&var2=value2&var3=value3 When accessing the URL as shown above, there will be created a total of three GET variables: var1, var2 and var3 with the [...]