adding some debugging echo

This commit is contained in:
edbrz9 2022-12-29 12:48:03 +01:00
parent a46b2102a0
commit d9b7b71aca
1 changed files with 3 additions and 2 deletions

View File

@ -13,11 +13,12 @@
<h4>Welcome on the handler page</h4> <h4>Welcome on the handler page</h4>
<?php <?php
echo "entering php"; echo "entering php\n";
$url = $_POST['url']; $url = $_POST['url'];
echo $url; echo $url ."\n";
$lang = $_POST['lang']; $lang = $_POST['lang'];
echo $lang; echo $lang;
echo "\n";
$output = exec("python3 y2t.py"); $output = exec("python3 y2t.py");
echo $output; echo $output;