私は現在このコードを使用しています:
if(isset($_POST['url']) && isset($_POST['trefwoorden']) )
{
mysql_connect('localhost', 'crawler', 'whathasbeenseencannotbeunseen');
mysql_select_db("crawler");
mysql_query("INSERT INTO jobs (jobID, url, trefwoorden) VALUES ('', '".$_POST['url']."', '".$_POST['trefwoorden']."')");
$output = shell_exec("./content.php " .mysql_insert_id());
echo $output;
}
私のcontent.phpには、次のコードがあります。
#!/usr/bin/php
<?php
echo 'HET WERKT';
?>
ここで、フォームに入力して送信することで、shell_execが実際に機能するかどうかを確認したいと思います。ただし、何もエコーされません。
間違ったコードを書きましたか?