Alright I wrote a simple query string script that will do things like index.php3?hvnqt like this script below:
<?
function ReadQuery(&$inputstring) {
$inputstring = $GLOBALS["QUERY_STRING"];}
ReadQuery($qstring);
if($qstring == "hvnqt") {
print('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" bgcolor="#cac7c7">');
print('<tr>');
print('<td>');highlight_file('/home/knight/www/hvnqt/index.php3');('</td>');
print('</tr>');
print('</table>');
exit;
}
?>
However i would like to be able to do this index.php3?document=article&article=nfs&page=1. Could someone help me with this or point me to something that has information on this?