I have made a simple forum script but i get the error:
Quote:
|
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/beep/public_html/forum/index.php on line 13
|
on 2 of the pages, on those pages line 13 is:
index.php:
Code:
print "<tr><td><?php print \"$row['boardno']\"?></td><td><a href=\"board.php?boardno=<?php print \"$row['boardno']\"?>\"><?php print \"$row['boards']\"?></td><td><?php print \"$row['lpost']\"?></td></tr>";
board.php:
Code:
print "<tr><td>Name</td><td><?php print \"$row['name']\"?></td></tr>";
I don't know what to do...
Please help.