LoginSignup
0
0

More than 3 years have passed since last update.

本日の学習内容Part3

Posted at

追加ボタンがクリックされたかどうか判断する

input.php
<form action="" method="post">
   <input type="submit" name="add" vaule="追加">
</form>
<?php 
if (isset($_POST['add']) {
   print('追加されました');
}
?>

?>

今さらながら学習記録について、その日に特に使い方を覚えておいた方がいいものを一つだけ取り上げます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0