hi guys, is the 'eval' function able to execute more than one function that returns a value? As illustrated below, fcall2 seems to be ignored. Why?
<?php
$strFromDB = "fcall1();fcall2();";
$line = "";
eval("\$line = " . $strFromD;
echo $line;
function fcall1(){
return "fcall1-text";
}
function fcall2(){
return "fcall2-text";
}
?>