Query String

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 ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-03-2004
Tim Blackwell
 
Posts: n/a
Default Query String

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>";


Reply With Quote
  #2 (permalink)  
Old 11-03-2004
neur0maniak
 
Posts: n/a
Default Re: Query String

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>";
>
>

Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 08:21 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0