This is a discussion on Query String within the PHP Language forums, part of the PHP Programming Forums category; How do you put the value of a form field into the query string. I have a select field named ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
How do you put the value of a form field into the query string. I have a
select field named title on a submission form. I'd like the selected value to be put on the Form line echo "<form name='form1' method='post' action='admin/edit.php?selectfield=what goes here? '>"; thanks for looking. function load() { require_once("../login.php"); login(); mysql_select_db("db"); $options = "select id from table order by id"; $optres = mysql_query($options); $opt_results = mysql_num_rows($optres); echo "<select name=title>"; for ($i=0; $i <$opt_results; $i++) { $optrow = mysql_fetch_array($optres); $optionval = stripslashes($optrow["song"]); echo "<option>$optionval</option>"; echo "<br>"; } echo "</select>"; echo "</p>"; echo "<form name='form1' method='post' action='admin/edit_tab.php?tab='>"; echo "<input type=\"submit\" name=\"edittab\" value=\"edit tab\">"; echo "</form>"; |
|
|||
|
What you want is the GET method, instead of the POST method
> echo "<form name='form1' method='post' > action='admin/edit.php?selectfield=what goes here? '>"; echo "<form name='form1' method='get' action='admin/edit.php'>"; Tim Blackwell wrote: > How do you put the value of a form field into the query string. I have a > select field named title on a submission form. I'd like the selected value > to be put on the Form line > > echo "<form name='form1' method='post' > action='admin/edit.php?selectfield=what goes here? '> > > thanks for looking. > > > function load() > { > require_once("../login.php"); > login(); > > mysql_select_db("db"); > $options = "select id from table order by id"; > $optres = mysql_query($options); > > $opt_results = mysql_num_rows($optres); > echo "<select name=title>"; > > for ($i=0; $i <$opt_results; $i++) > { > $optrow = mysql_fetch_array($optres); > $optionval = stripslashes($optrow["song"]); > echo "<option>$optionval</option>"; > echo "<br>"; > } > echo "</select>"; > echo "</p>"; > > echo "<form name='form1' method='post' > action='admin/edit_tab.php?tab='>"; > > > echo "<input type=\"submit\" name=\"edittab\" value=\"edit tab\">"; > echo "</form>"; > > |