> I am having a problem with string delimiters. For some reason 
> no matter what I do I can not get them to process correctly!!
> For example, 
> 
> <?
> $area_entered = "yes";
> $date_entered = "no";
> echo "$area_entered\t\t\t$date_entered<br>";
> ?>
> 
> That outputs: 
> yes no
> 
> What am I doing wrong?!

The \n and \t control the layout of the source code, but it is still the
HTML that determines what the browser renders. Do a View Source when you
display the page above, and you will see

yes                     no<br>

as the source which outputs 

yes no

Kirk

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to