Stan
0
Q:

run php script from another php

<?php 
include('log test.php');
$output = shell_exec('php filename.php');
echo "<pre>$output</pre>";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://localhost/Ia2/Watering/tests/log%20test.php"); //URL of the file
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$output = curl_exec($ch);
curl_close($ch);
echo "<pre>$output</pre>";
?>
1

New to Communities?

Join the community