I'm gettting a parse error with this piece of code in the area of the a href. It's looking for either
'," - or -
';"
but I don't see where it would go. I'm just learning PHP in case you're wondering why I can't see something that's probably very obvious as the code looks fine to me. I'm trying to create the pages in Kevin Yank's book using DWMX instead of hand coding because I work in DW all day. I read the tutorial for PHP on this site and it helped a lot but I still can't figure out why this piece of code is causing problems as it was created by DW. Perhaps another pair of eyes can see something?


<?php do { ?>
<tr><td><?php echo $row_rsGetJokes['JokeText']; ?></td>
<td><?php echo $row_rsGetJokes['JokeDate']; ?></td>
<td><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<a href="deletejoke.php?recordID=<?php echo $row_ rsGetJokes['ID']; ?>">Delete this joke</a> </font></td></tr>
<?php } while ($row_rsGetJokes = mysql_fetch_assoc($rsGetJokes)); ?>