Git リポジトリ化

This commit is contained in:
Gitea
2023-05-21 22:51:32 +09:00
commit b3a2803c5d
471 changed files with 3654 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
if(isset($_POST["save"])):
echo "<script>alert('保存しました')</script>";
$name = htmlspecialchars($_POST["name"], ENT_QUOTES);
$address = htmlspecialchars($_POST["address"], ENT_QUOTES);
else:
?>
<form action="" method="post">
<input type="text" name="name" value="<?= $name;?>">
<input type="text" name="address" value="<?= $address;?>">
<input type="submit" name="save" value="保存">
</form>
<?php
endif;
?>