Is it possible to break up the parameters of a function with ?> and <?php ??
What I mean by this, for example, is this:
<snip>
<?php
strtoupper(
?>
<table>
<tr>
<td>
<a href="http://www.php.net">php.net</a>
</td>
</tr>
</table>
<?php
);
?>
</snip>
With this example, will it output the following HTML?
<snip>
<TABLE>
<TR>
<TD>
<A HREF="HTTP://WWW.PHP.NET">PHP.NET</A>
</TD>
</TR>
</TABLE>
</snip>
I know it's not a very useful use of strtoupper()... :) But I am curious
about whether it is possible to have the parameters to a function in exited
HTML. Is it possible?
--Jason
--
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]