8 lines
281 B
PHP
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;
|
|
?>
|