> 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

Reply via email to