convert to support multiple queries

This commit is contained in:
2020-05-08 18:47:11 -04:00
commit 26c0032053
6 changed files with 548 additions and 0 deletions

12
index.php Normal file
View File

@ -0,0 +1,12 @@
<?php
$file = 'contact.txt';
if(isset($_GET["contact"])) {
file_put_contents($file, $_GET['contact']);
}
$oncall = file_get_contents('./contact.txt');
echo("Current person on call is now $oncall");
?>