Paul Goepfert wrote:
This is the full code for the code that doesn't work.

<?php
        echo '<select name="month" >\n';
        $month_query = mysql_query("SELECT m_id, months FROM Month");
        while ($r = mysql_fetch_array($month_query));
        {
                $v = $r["m_id"];
                $out = $r["months"];  
                echo "<option value=$v>$out</option>\n";
        }
        echo '</select>\n';
?>

dear sir,

overall, i can see no visible error. but u must debug the process.

1. please add print_r($r) within the while loop to see the contents.
2. check the num of rows returned by mysql_query.
3. check it mysql_query is not returning an error.


--
Sumeet Shroff
http://www.prateeksha.com
Web Design and Ecommerce Development, Mumbai India

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to