> print <<<END
> <table>
> <tr><td>Name:</td><td>{$= text2html($data['name']) }</td></tr>
> <tr><td>Address:</td><td><input type="text" value="{$=
htmlspecialchars($data['address']) }"</td></tr>
> </table>
> END;

Federico, you can always do this:

?>
<table>
<tr><td>Name:</td><td><?= text2html($data['name']) ?></td></tr>
<tr><td>Address:</td><td><input type="text" value="<?=
htmlspecialchars($data['address']) ?>"</td></tr>
</table>
<?

Cheers,
Leon



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to