Im stuck , I have a website which index's gamer profiles and now keeps a historic record.
Everythings implemented and working only when you manualy write the url out.
Folowing the link made by the form wont work because its index.php?id= and i then want to add &date onto this but ?date= needs to be &date= from the form ontop of index.php?id=
Normal user input normalyresults in somthing like:
index.php?id=123456789
which returns the users profile no problem On that page i have "load historic data" drop down which shows dates of this profile to load dependant on the id input.
<form method='get' action='index.php?id=$data' >
Folowing the submit button on the page returns:
index.php?id=123456789?date=112012
however , The only way i can get this to work is to manualy change that ? to a & between ID and DATE For the life of me i cannot figure it out!
basicaly i need:
index.php?id=123456789 ? date=112012
to be
index.php?id=123456789 & date=112012
So that when the page reloads i can see both ID and DATE
I think i can be done via post however i need it visible in the url idealy
Ive also tried:
<form method='get' action='$_SERVER['PHP_SELF']'>
<form method='get' action='id_$data'> (with a mod rewrite)
Thanks , Martin.
<input type="hidden" value="<?php echo $data?>">– Nikola Nov 19 '12 at 12:24