Anyone see why this is the only thing that's not re-filling?
PHP Code:
<?php
<input name="Owner" type="radio" value="City_of_City_Name" <?php if (@$fields["Owner"] == "City_of_City_Name") echo "checked"; ?>" /> City of City Name<br />
<input name="Owner" type="radio" value="PGE" <?php if (@$fields["Owner"] == "PGE") echo "checked"; ?>" /> PGE<br />
<input name="Owner" type="radio" value="USPS" <?php if (@$fields["Owner"] == "USPS") echo "checked"; ?>" /> USPS<br />
<input name="Owner" type="radio" value="other" <?php if (@$fields["Owner"] == "Other") echo "checked"; ?>" /> Other, Including Private Property (Enter Below)<br /><br />
Figured it out...
I took the quote out that was after ?>...so it looks like this:
PHP Code:
<?php
<input name="Owner" type="radio" value="City_of_City_Name" <?php if (@$fields["Owner"] == "City_of_City_Name") echo "checked"; ?> /> City of City Name<br />
<input name="Owner" type="radio" value="PGE" <?php if (@$fields["Owner"] == "PGE") echo "checked"; ?> /> PGE<br />
<input name="Owner" type="radio" value="USPS" <?php if (@$fields["Owner"] == "USPS") echo "checked"; ?> /> USPS<br />
<input name="Owner" type="radio" value="other" <?php if (@$fields["Owner"] == "Other") echo "checked"; ?> /> Other, Including Private Property (Enter Below)<br /><br />

