PHP- Read querystring
By [)ia6l0 iii
Use the $_GET function to read querystring values.
For e.g. the following line reads a querystring key - qs
<?php
$qsValue = $_GET['qs'];
echo $qsValue;
?>
Related FAQs
Use the file_get_contents method to read the file contents.
PHP- Read querystring (3706 Views)