Hi, one of our externally hosted sites is experiencing forms problems.
http://printuli.com/ship/upsdesk.php
Initially a very simple form, select a product and the form grows from there.
Now since the upgrade to PHP 5.3.14 the selected does not get echoed and the form resets.
We have an identical form at another external host
http://printnml.com/ship/upsdesk.php
This works fine it is identical to the other except it's on PHP 5.2.17
The code is so simple for the select field option:
<select name="Product" class="jobTextBox" id="Product" onChange="this.form.submit()">
<option value="<?php if($Product == "") { echo ''; } else { echo $Product; } ?>"><?php if($Product == "") { echo ''; } else { echo $Product; } ?></option>
<option value="Manual Entry">Manual Entry</option>
<option value="Standard Postcard" style="background-color:#FFE7CE;">Standard Postcard</option>
<option value="Jumbo Postcard" style="background-color:#FFE7CE;">Jumbo Postcard</option>
<option value="Super Jumbo Postcard" style="background-color:#FFE7CE;">Super Jumbo Postcard</option>
<option value="Rack Card" style="background-color:#E6E6CC;">Rack Card</option>
<option value="Single Page Flyer" style="background-color:#CCFFCC;">Single Page Flyer</option>
<option value="Four Page Brochure" style="background-color:#CCFFCC;">Four Page Brochure</option>
<option value="Six Page Brochure" style="background-color:#CCFFCC;">Six Page Brochure</option>
<option value="Business Card" style="background-color:#FFF0C1;">Business Card</option>
<option value="Sticker" style="background-color:#FFF0C1;">Sticker</option>
<option value="Pocket Folder" style="background-color:#CEEFFF;">Pocket Folder</option>
</select>
Can someone tell me what has changed?