On Fri, Nov 09, 2001 at 10:33:39PM +0100, Morten Gjetanger wrote:
> I like to evaluate som PHP code, but I want the result to be putted into a
> string.
> example:
>
> $var = "Test1";
> $code = "<td><?php echo $var1?></td>";
> $html = someFunction($code);
>
> After this i want $html to contain "<td>Test1</td>
$var = "Test1";
$code = "<td>$var</td>";
$html = someFunction($code);
Done.
--
Jason Stechschulte
[EMAIL PROTECTED]
--
"You can't have filenames longer than 14 chars.
You can't even think about them!"
-- Larry Wall in Configure from the perl distribution
--
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]