il deal with

This commit is contained in:
superdimensional 2021-04-17 00:38:23 -04:00
parent 662dfbe212
commit 5c0c3b1cea

View file

@ -1,8 +0,0 @@
<?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;
?>