need help in dynamic select menu in php
Posted on
16th Feb 2014 07:03 pm by
admin
hi i have created a dynamic select menu using php. i have a problem in that which is when the user select any value in that menu and press submit then it does not pass to next page.
my code is here
Did you know?Explore Trending and Topic pages for more stories like this.
Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<?php
$db = mysql_connect("localhost");
mysql_select_db("test", $db);
$query = "SELECT * FROM day" or die(mysql_error()); // id='".$id."'
//echo $query;
$result = mysql_query($query) or die(mysql_error());
?>
<form name="form1" method="post" action="date.php">
<label>Date:
<select name="day" id="day">
<?php while( $row = mysql_fetch_array($result) ) { ?>
<option value="<?php $row['id']; ?>"><?php echo $row['day']; ?></option>
<?php } ?>
</select>
</label>
<p>
<label>
<input type="submit" name="button" id="button" value="Submit">
</label>
</p>
</form>
</body>
</html>
the next page is
Code: <?php
$day = $_POST["day"];
echo $day;
?>
No comments posted yet
Your Answer:
Login to answer
305
47
Other forums
Two warning messages
Quote<b>Warning</b>: mysql_real_escape_string() expects parameter 1 to
Why is my row count 0?
Here's the MySQL query i'm running. It basically pulls data from 2 tables based on some data passed.
php form help
Hey,
I use a control file to set my meta tags and titles
Here's an example
Code: &a
Output Buffering question
Hi all,
I've been trying to wrap my head around output buffering. So far I've found tons of
Need help/w Page: 1,2,3,4 function!
So I have this code im working on where it's ment to display seperate pages having 20 logs each
I
Need help with a mail notify function
I was tasked with setting up a site that's been prewritten. The site is basically a form that captur
whats wrong with my code please help!!!
this is the error
Warning: mysql_close(): supplied argument is not a valid MySQL-Link res
How to ... (FAQs)
... get e-mail notifications
As several people asked how to get e-mail notifications when new posti
dinamic "textboxes"?
Ey all, my first post here, i hope its not a hard one
I display mysql results in a table
New to PHP and just trying to understand a little code.
I hope I'm not annoying anyone or breaking the rules but I was wondering about this bit of code righ