[PHP] How is code in PHP interpreted, from 1st line to last? i dont think so

2002-03-28 Thread Moschitz Martin

How can I say php to execute graf.php until it´s finished and then move on
to the rest of the code?

echo img src='graf.php;
...
more code
...

tanxs

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How is code in PHP interpreted, from 1st line to last? i dont think so

2002-03-28 Thread Chris Boget

 How can I say php to execute graf.php until it´s finished and then move on
 to the rest of the code?

 echo img src='graf.php;
 ...
 more code
 ...

echo img src=';
include( graf.php );
echo ;

Chris


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php