Re: AW: [PHP-DB] Could be this less complicated? From: Jean-Marc Libs (libs <email protected>)
Date: 07/13/00

Hi,

On Thu, 13 Jul 2000, Sels, Stefan wrote:
> You can do this automaticly with addslashes($string) and remove it with
> stripslashes($string).
>
> Regards
> Stefan Sels
> <?
> $tag=5555;
> echo "<TD bgcolor=\"#56a4d8\"><FONT size=1>
> <INPUT maxLength=5 name=tagdisabled value=\"$tag\" style=\"HEIGHT: 22px;
> WIDTH: 89px\"></FONT></TD>";
> ?>

The simplest I know would be:

echo "<TD bgcolor='#56a4d8'><FONT size=1>
        <INPUT maxLength=5 name=tagdisabled value='$tag'
                style='HEIGHT: 22px; WIDTH: 89px'></FONT></TD>";

-- 
This company has performed an illegal operation and will be shut down.
If the problem persists, contact your vendor or appeal to a higher
court.

-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>