adding some debugging echo
This commit is contained in:
parent
d9b7b71aca
commit
b62f9d2d17
|
@ -10,18 +10,22 @@
|
|||
|
||||
<div id="root">
|
||||
|
||||
<h4>Welcome on the handler page</h4>
|
||||
<h4>Welcome on the handler page v2</h4>
|
||||
|
||||
<?php
|
||||
echo "entering php\n";
|
||||
echo nl2br("entering php\n");
|
||||
$url = $_POST['url'];
|
||||
echo $url ."\n";
|
||||
echo $url;
|
||||
echo nl2br("\n");
|
||||
$lang = $_POST['lang'];
|
||||
echo $lang;
|
||||
echo "\n";
|
||||
echo nl2br("\n");
|
||||
|
||||
$output = exec("python3 y2t.py");
|
||||
sleep(5);
|
||||
echo $output;
|
||||
echo nl2br("\n");
|
||||
|
||||
sleep(5);
|
||||
echo "check"
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue