Hi I am new to PHP and trying to teach myself. I currently have a web site with a checkbox the code for this is:
<td width="37" align="center"><input name="checkbox" type="checkbox" id="checkbox" value="checkbox" <?php if ($row[8]) echo "checked"; ?>>
I am trying to replace the checkbox with a flashing arrow code thus:
<td width="37" align="center"> <img border="0" <?php if
($row[8]) echo "src=\"arrow8.gif"\" ?> width="30"
height="30">";
<?php if ($row[8]) echo "checked"; ?>
<td width="53">
<div align="center">
<?php echo $row[10]?>
</form>
I get syntax error stating "," expected, which I can fix but the I get T LNUMBER error which is throwing me.
ANy help greatly appreciated.
Many Thanks