Alright, heres my problem:
i need to figure out someway to use the PHP_self variable to include variables like this
file.php?blahblah=66
instead it will only write
file.php
is there anyway to make this work how i want it?
$PHP_Self.$QUERY_STRING
only if method is get, though
do you mean as a redirect??
if so you can use something like
header("location=".$PHP_SELF"?var1=hello&var2=mum">;
this would send you to itself with the two variables set.
just make your own variable:
$self = $HTTP_HOST.$REQUEST_URI;
thanx, i got it. i just needed to use $QUERY_STRING
but thanx 🙂