Posted by Rik Wasmus on 10/30/07 15:25
On Tue, 30 Oct 2007 16:03:18 +0100, <paul814@excite.com> wrote:
> How can I separate all my entries so that they look presentable and
> readable on the page?
That's more of a design issue. I'm terrible at those, so I usually stick
with 'I'll do a semantically correct output and the rest is up to the
designer'.
> print " <p>" . $row->edcomments "</p>";
> But I get an error: Parse error: syntax error, unexpected
> T_CONSTANT_ENCAPSED_STRING in C:\xampp\htdocs\dailyreport\view-
> editorial.php on line 43
Giving us a line number would have helped, you forgot a dot.
print " <p>" . $row->edcomments . "</p>";
--
Rik Wasmus
[Back to original message]
|