Having a bit of problem with this. Script A calls/includes Script B. Script B has to execute a system call and return to Script A. Fails in flames. When I call Script B on its own, it works just fine, I cannot for the life of me get it to work by calling it on A. Ive already tried
- Including it on A
- Calling it with another system call within A
- Making a bash script that calls B and then calling that bash script with A (I N C E P T I O N)
What are my options here?
Edit for code:
<?php
//B.php
//works fine when called on its own
function readsite ($url)
{
$output=system("curl -ks $url");
return $output;
}
?>
<?php
//A.php
include_once("B.php");
$url="www.google.com";
$read=readsite($url);
echo $read;
?>
http://before the URL, but we need to see the error. – lonesomeday Apr 15 '11 at 15:10