bigbird3156
Programmer
Hi,
if I have a text field on a page and I want to add the content of that field into a url once it has been submitted how do I call it?
for the sake of this example, I have a text field called "Tfield" and I want the URL after submitting the form to look like...
abc.php?Tfield=this+is+the+content+of+Tfield
The action part if the form would then look like
The Bird from Down Under- Bigbird 3156
if I have a text field on a page and I want to add the content of that field into a url once it has been submitted how do I call it?
for the sake of this example, I have a text field called "Tfield" and I want the URL after submitting the form to look like...
abc.php?Tfield=this+is+the+content+of+Tfield
The action part if the form would then look like
Code:
action="abc.php?Tfield=<?php echo urlencode (?????); ?>"
The Bird from Down Under- Bigbird 3156