Ok, that subject probably doesn't make a whole lot of sense, but basically I want to be able to pass my script data in the form of:
script?data instead of script?dataname=data
Is this possible? -G
no, that won't work. are you worried about look? what about: script?d=data
that will at least shorten the url up a little.
You CAN do it... blah.com/?mydata
pick it up with $QUERY_STRING and get a result of..
echo $QUERY_STRING; // outputs "?mydata" or "mydata"
It's not a recommended method though.. ( Only tested in PHP4, unsure of PHP3 compat.)
Regards...