⟩ How can we access the data sent through the URL with the GET method?
In order to access the data sent via the GET method, we you use $_GET array like this:
www.rendc.org?var=value
$variable = $_GET[“var”]; this will now contain ‘value’
In order to access the data sent via the GET method, we you use $_GET array like this:
www.rendc.org?var=value
$variable = $_GET[“var”]; this will now contain ‘value’
Explain me what is the use of header() function in php?
Tell me what is the difference between ereg_replace() and eregi_replace()?
Explain what is the difference between $var and $$var?
Tell me what is the use of "enctype" attribute in a html form?
Explain what are the two main string operators?
Tell me how to find current date and time?
Explain how can PHP and Javascript interact?
Explain me what is the meaning of a Persistent Cookie?
Do you know what is the function mysql_pconnect() usefull for?
Do you know what does $GLOBALS means?