how can i exit this script before execution of the remote script is
finished?
cUrl executes the external php ok, but this script waits until
execution of the external script
php Code:
<?php
print file_get_contents("
http://picnictoimpeach.us/videos/
playlist.xml");
$curl = curl_init();
curl_setopt ($curl, CURLOPT_URL, "
http://picnictoimpeach.us/
remote.php5");
curl_exec ($curl);
curl_close ($curl);
?>