adding some debugging echo

This commit is contained in:
edbrz9 2022-12-29 12:50:49 +01:00
parent d9b7b71aca
commit b62f9d2d17
1 changed files with 8 additions and 4 deletions

View File

@ -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"
?>