Note that there are some explanatory texts on larger screens.

plurals
  1. POForm won't post select value in IE9
    primarykey
    data
    text
    <p>All, I've got the following page: <a href="http://tinyurl.com/7lzr6qo" rel="nofollow">http://tinyurl.com/7lzr6qo</a></p> <p>The original form code is:</p> <pre><code>&lt;form id="dj_feedback" name="dj_feedback" action="../test-save-feedback" method="post"&gt; &lt;br&gt; &lt;h2&gt;How was the Event?&lt;/h2&gt; &lt;hr&gt; &lt;table&gt;&lt;tr&gt;&lt;td width="100px" valign="middle"&gt; &lt;b&gt;Person&lt;font color="#FF0000"&gt; * &lt;/font&gt;&lt;/b&gt; &lt;/td&gt;&lt;td valign="middle"&gt; &lt;select name="dj_name" id="dj_name"&gt; &lt;option value="original"&gt;&lt;/option&gt; &lt;?php $qrydj = "Select user_id, first_name, last_name from users where role='employee'"; $resultdj = mysql_query($qrydj); while($resultsetdj = mysql_fetch_array($resultdj)){ ?&gt; &lt;option value="&lt;?php echo $resultsetdj['user_id']; ?&gt;"&gt;&lt;?php echo $resultsetdj['first_name']." ".$resultsetdj['last_name']; ?&gt;&lt;/option&gt; &lt;?php } ?&gt; &lt;/select&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;button class="submit" name="submit_feedback" value="submit_feedback"&gt;Get Paid!&lt;/button&gt; &lt;/form&gt; </code></pre> <p>When I view the dropdown source it has a value on the select and then on my second page all I have is a simple echo statement to view what was passed like this:</p> <pre><code>&lt;?php session_start(); $user_id = $_POST['dj_name']; echo "The user id is: ".$user_id; ?&gt; </code></pre> <p>However, when I post this the value selected in the dropdown menu doesn't get passed. In other browsers this works perfectly fine however. </p> <p>Does anyone have any idea why this isn't working properly?</p> <p>Thanks!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload