我有一个这样的 php 脚本。这不会运行我的脚本,也不会在单击按钮时打印任何内容。怎么做 另外,如果您有指向 php 101 在线的指针,请告诉我
<?php
if ($_GET['run']) {
# This code will run if ?run=true is set.
ob_start();
passthru("./check_ddts.sh ".escapeshellarg($_POST["CSCui21515"]));
$data = ob_get_clean();
}
?>
<!-- This link will add ?run=true to your URL, myfilename.php?run=true -->
<button type="button" onclick="?run=true">Click Me!</button>