Hi All
In a section of my code I open some other file via an URL to have that code
executed like in
$raw=fopen("htt p://webserver/some.php?aaa=$a &bbb=$b");
print "<td>$raw<t d>";
This works for me, but is this a recommended way to evaluate such php code
stored in an other file ?
Next question is, if I am not interested in the value of $raw,only in the
execution of the file via fopen, can I move the fopen call in the background
like I can do on Unix using the &.
I do the above with a series of different values for $a and $b in a loop, so
it would improve the speed of this code.
Thanks in advance
Heinz
In a section of my code I open some other file via an URL to have that code
executed like in
$raw=fopen("htt p://webserver/some.php?aaa=$a &bbb=$b");
print "<td>$raw<t d>";
This works for me, but is this a recommended way to evaluate such php code
stored in an other file ?
Next question is, if I am not interested in the value of $raw,only in the
execution of the file via fopen, can I move the fopen call in the background
like I can do on Unix using the &.
I do the above with a series of different values for $a and $b in a loop, so
it would improve the speed of this code.
Thanks in advance
Heinz
Comment