arrayinamatrix.xyz/calculators/main.php
2021-04-16 23:53:19 -04:00

8 lines
281 B
PHP

<?php
// The global $_POST variable allows you to access the data sent with the POST method by name
// To access the data sent with the GET method, you can use $_GET
$say = htmlspecialchars($_POST['say']);
$to = htmlspecialchars($_POST['to']);
echo $say, ' ', $to;
?>