yeh sorry i played the "write first read later" game
after reading about what you told me to do i updated the code to
<td>
<input name="Active" type="radio" value="-1" " . ($row['Active'] == '-1' ? 'checked' : '') . " /> Yes
<input name="Active" type="radio" value="0" " . ($row['Active'] == '0' ? 'checked' : '') . " /> No
</td>
and its still coming up with an error:
Parse error: parse error, expecting ','' or';''...on the 2nd line ( the one that for value='0')
any idea what i did wrong now?