diamonds
07-19-2003, 08:55 PM
I wish to execute a (internal) php command. Somthing like the exec function, but it runs php commands, like the exec in javascript. somthing like this:
$var_1='ecec';
$var_2='command';
ecec($var_1.$var_2."_();")
would run:
ececcommand_();
Is there a function in PHP that does this?
$var_1='ecec';
$var_2='command';
ecec($var_1.$var_2."_();")
would run:
ececcommand_();
Is there a function in PHP that does this?