You can use the above in any script, with out changing the script, by instead of a url shaped like
Code:
https://vborg.vbsupport.ru/newreply.php?do=newreply&noquote=1&p=769734
you instead shape it like
Code:
https://vborg.vbsupport.ru/newreply/do/newreply/noquote/1/p/769734
and then on the top of each script
PHP Code:
<?
$vars=str_replace("/forum/newreply/","",$PHP_SELF);
$x=explode("/",$vars);
for ($i=0;$i<count($x);$i=$i+2) {
$var=$x[$i];
$val=$x[($i+1)];
$$var=$val;
}
?>
and you have your variables, simple
I used to run something like that on vb 2 back in the old day before the internet.