shell_exec phpfile

0 Cevap php

Şu anda bu kodu kullanabilirsiniz:

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;

}

Benim content.php ben aşağıdaki kodu var:

#!/usr/bin/php
<?php
echo 'HET WERKT';
?>

Şimdi benim shell_exec aslında formunu doldurarak ve göndererek çalıştığını görmek istiyorum: ama hiç bir şey yankı yok.

Yanlış kod yazmak mı?

0 Cevap