On czwartek 23 grudzieÅ 2004 05:44 pm, Jonathan Ernst wrote:
> Le jeudi 23 dÃcembre 2004 Ã 22:39 +0100, Paul van Schayck a Ãcrit :
> > Hey Eric,
> >
> > On Thu, 23 Dec 2004 01:38:02 -0800 (PST), Eric Blade <[EMAIL PROTECTED]>
wrote:
> > > The attached patch includes a lot of cleaning up,
> > > mostly to HTML, a bit to some PHP.
> >
> > What's this supposed to do:
> > if(!$tempResult)
> > {
> > - echo "$query <br>\n";
> > + echo "$query <<br />>\n";
> > echo "An error occurred: ".mysql_error()."<p>";
> > exit;
> > }
> > @@ -68,7 +68,7 @@
> > if(debugging())
> > {
> > echo $query;
> > - echo "<br><br>";
> > + echo "<<br />><<br />>";
> > }
>
> Same question: what are those <<br />> ???
The double brackets are wrong. But the slash is just to make it valid xhtml.
So it should be:
echo "<br /><br />";
Cheers, Kuba Ober