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
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
Last Weeks sDate and eDate.
sDate - Start Date
eDate - End Date
I need to pull two dates for "Last Week" whi
pagination numbering pattern
Hello,
I have following code which works great for pagination. but i have small issue now.
strtotime issue
Hey all,
I'm playing around with some code, and basically the idea is:
Person changes
MySQL issue
I am taking sentences through a form on page. Then checking some condition and trying to insert them
Error Messaging not working
I changed the way my form tells the user of an error. But I can't seem to get it to work properly.
random generation
hi
i need help with generating this
numbers from 1-12
i want to generate in ran
Best way to check for end of a record and send it back to the first record
I'm hoping someone can help me out and explain the best way to accomplish this.
What I'm doin
xml
<?php
echo "<h1>XML Articles</h1>";
$home
How to assign JS screen.width to ASP.Net variable
I've got this ASP.net routine that gets the cookie value of the screen width, but now I need to chan
Combining Two Queries
I have two scripts that each work fine by themselves. One is a search script with a variable that de