I'm new to PHP and MySQL but so far so good trying to get done what I need to do. I seem to get stuck displaying an array value inside a form text box. This is what I have but it does not work. I actually see the code inside the box:
Code: Select all
<input name="custID" type="text" size="45" VALUE="<? echo $info['Cust_ID']; ?>"Code: Select all
echo $info['Password'];
print $info["Username"];Code: Select all
<td width="274"><?php <input name="ShipAttention" type="text" size="45" VALUE="<? echo $info['Cust_ID'] ?>"> ?> </td>