Click to See Complete Forum and Search --> : Simple PHP help please....


BurnCK
06-30-2004, 04:57 AM
/Purchase.php?domain=zxzxzxzx.com&add=Purchase

Above is the URL submitted after I have submitted a form, but can anyone tell me how to get the domain part (zxzxzxzx.com) to be automatically displayed on the next page within another form

I hope you understand my query. If not please let me know and I'll try and re-explain

Thanks

DaiWelsh
06-30-2004, 06:59 AM
<input type="text" name="domain" value="<?=$_GET['domain']?>">


should be all you need, though ideally you might want to do some testing of the value first.

HTH,

Dai

BurnCK
06-30-2004, 08:12 AM
That worked....thanks ! ;)