Ok. To be a bit more precise. the $code part could be any php code, e.g.

$code = <<<ENDM

require_once("someFile.inc");

$array1 = someFunc1($param1);

foreach($array1 as $val) {
  echo "<td>$val</td>\n";
}

ENDM;

regards

Morten Gjetanger

"Morten Gjetanger" <[EMAIL PROTECTED]> skrev i melding
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I'm quite sure there is a simple solution to the problem bellow!
>
> 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>
>
> I've checked the eval function, but it just evaluates the code and just
> outputs the result. I really wants the output into a string!
>
> regards
>
> Morten Gjetanger
>
>



-- 
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