実現したいこと
下記PHPを実行するとエラーが出るので、解消したいです。
前提
ここに質問の内容を詳しく書いてください。
(例)
PHPで予約サイトのようなものを作成しています。
予約情報をデータベースに保存します。
ページ1~2は以下の通りです。
ページ3の「予約」ボタンがクリックされたら、予約情報をテーブルreservationに書き込みます。
ページ4に成功した場合、「予約が完了しました」と表示します。
成功できなかった場合は、エラーメッセージを表示します。
発生している問題・エラーメッセージ
Notice: Undefined index: rid in C:\xampp\htdocs\kami_done3.php on line 11 Notice: Undefined index: username in C:\xampp\htdocs\kami_done3.php on line 12 Notice: Undefined index: staffname in C:\xampp\htdocs\kami_done3.php on line 13 Notice: Undefined index: selectedmenu in C:\xampp\htdocs\kami_done3.php on line 14 Notice: Undefined index: selectedday in C:\xampp\htdocs\kami_done3.php on line 15 Notice: Undefined index: starttime in C:\xampp\htdocs\kami_done3.php on line 16 Notice: Undefined index: endtime in C:\xampp\htdocs\kami_done3.php on line 17 入力データに問題があります。再入力してください
該当のソースコード
ページ1 kamii.php
<?php $today = filter_input(INPUT_POST, 'today'); $monthNext = filter_input(INPUT_POST, 'monthNext'); $yearNext = filter_input(INPUT_POST, 'yearNext'); $monthPrev = filter_input(INPUT_POST, 'monthPrev'); $yearPrev = filter_input(INPUT_POST, 'yearPrev'); if($today==1){ $month = date('n'); $year = date('Y'); } if($monthNext > 12){ $monthNext = 1; $yearNext++; } if($monthPrev === "0"){ $monthPrev = 12; $yearPrev--; } $month = $monthNext??$monthPrev??date('n'); $year =$yearNext??$yearPrev??date('Y'); $last_day = date('j', mktime(0, 0, 0, $month + 1, 0, $year)); $calendar = array(); $j = 0; for ($i = 1; $i < $last_day + 1; $i++) { $week = date('w', mktime(0, 0, 0, $month, $i, $year)); if ($i == 1) { for ($s = 1; $s <= $week; $s++) { $calendar[$j]['day'] = ''; $j++; } } $calendar[$j]['day'] = $i; $j++; if ($i == $last_day) { for ($e = 1; $e <= 6 - $week; $e++) { $calendar[$j]['day'] = ''; $j++; } } } ?> <!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>課題</title> <link rel="stylesheet" href="stylesheet.css"> </head> <body> <table> <thead> <tr> <form action="" method="post"> <th><button type="submit" id="prev"> « <input type="hidden" name="monthPrev" value="<?php echo $month-1;?>"> <input type="hidden" name="yearPrev" value="<?php echo $year;?>"> </button></th> </form> <th id="title" colspan="5"><?php echo $year; ?>年<?php echo $month; ?>月 </th> <form action="" method="post"> <th><button type="submit" id="next"> » <input type="hidden" name="monthNext" value="<?php echo $month+1;?>"> <input type="hidden" name="yearNext" value="<?php echo $year;?>"> </button></th> </form> </tr> <tr> <th class="red">日</th> <th>月</th> <th>火</th> <th>水</th> <th>木</th> <th>金</th> <th class="blue">土</th> </tr> </thead> <tbody> <tr> <?php $cnt = 0; ?> <?php foreach ($calendar as $key => $value): ?> <td> <p> <?php $cnt++; ?> <form method="post" action="kami2.php"> <button type="submit" name="days" value="<?php echo $year; ?>年<?php echo $month; ?>月<?php echo $value['day']; ?>日"> <?php echo $value['day']; ?>> </button> </form> </p> </td> <?php if ($cnt == 7): ?> </tr> <tr> <?php $cnt = 0; ?> <?php endif; ?> <?php endforeach; ?> </tr> </tbody> <tfoot> <tr> <form action="" method="post"> <td colspan="7"> <button type="submit" id="today"> 現在に戻る <input type="hidden" name="today" value="1"> </button> </td> </form> </tr> </tfoot> </table> </body> </html>
ページ2 kami2.php
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title> 課題</title> <link rel="stylesheet" href="css/stylesheet.css"> </head> <body style="background-color: lightblue">> <?php error_reporting(0); $yoyaku_days=$_POST['days']; print $yoyaku_days; print 'が選択されました(^^)b'; ?> <form action="kami_done2.php" method="post"><br><br> 顧客氏名<br /> <input type="text" name="namae" style="width:200px"><br><br> 担当者を選択してください。<br /><select name="name"> <option value=""> </option> <option value="花">花</option> <option value="山">山</option> <option value="海">海</option> </select><br><br> 希望メニューを選択してください。<br /><select name="menu"> <option value=""> </option> <option value="カット(30分)">カット(30分)</option> <option value="フルカラー(1時間)">フルカラー(1時間)</option> <option value="トリートメント(30分)">トリートメント(30分)</option> </select><br><br> 希望開始時間を選択してください。<br /><select name="time"> <option value=""> </option> <?php for($time = 9; $time <18 ; $time++){ ?> <option value="<?php echo $time; ?>時00分"><?php echo $time; ?>時00分</option> <option value="<?php echo $time; ?>時30分"><?php echo $time; ?>時30分</option> <?php } ?> <option value="18時00分">18時00分</option> </select><br><br> <input type="hidden" name = "yoyakudays" value="<?php echo $yoyaku_days; ?>"> <input type="submit" value="確定"> <input type="reset" value="クリア"> </body> </html>
ページ3 kami_done.2php
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN'> <html lang="ja"> <head> <meta charset="UTF-8"> <title> 課題</title> </head> <body style="background-color: lightblue"> <?php error_reporting (0); $yoyaku_namae=$_POST['namae']; $yoyaku_name=$_POST['name']; $yoyaku_menu=$_POST['menu']; $yoyaku_days=$_POST['yoyakudays']; $yoyaku_time=$_POST['time']; $nanji = substr( $yoyaku_time, 0 , 1); $jikan = substr( $yoyaku_time, 0 , 2); $hun = substr( $yoyaku_time, -5 , 2); if($yoyaku_name==''||$yoyaku_menu==''||$yoyaku_time==''){ ?> <hr> <div style="text-align: center"> <img src="line_7color.png"><br> <h2> 予約は完了していません!!<br> </h2> <img src="line_7color.png"><br> </div> <hr> <?php if($yoyaku_name == ''){ print '担当者の項目を入力してください。<br>'; } if($yoyaku_menu == ''){ print '希望メニューの項目を入力してください。<br>'; } if($yoyaku_name == ''){ print '希望開始時間の項目を入力してください。<br>'; } print'<center><input type = "button" onclick="history.back()" value=" 予約画面に戻る "</center>'; }else{ ?> <hr> <div style="text-align: center"> <img src="line_7color.png"><br> <h2> ご予約ありがとうございます!!<br> </h2> <img src="line_7color.png"><br> </div> <hr> <?php print '下記の通り予約されました。<br><br>'; print'顧客氏名:'; if($yoyaku_namae == ''){ print'ゲスト'; }else{ print $yoyaku_namae; } print'さん<br>'; print'担当者氏名:'; print $yoyaku_name; print'<br>'; print'希望メニュー:'; print $yoyaku_menu; print'<br>'; print'選択された日付:'; print $yoyaku_days; print'<br>'; print'開始時間:'; print $yoyaku_time; print'<br>'; if($yoyaku_menu == 'カット(30分)' ||$yoyaku_menu == 'トリートメント(30分)') { if($hun == 30){ if($nanji == 9){ $nanji++; print'終了時間:'; print $nanji; print '時'; }elseif($nanji == 1){ $jikan++; print'終了時間:'; print $jikan; print'時'; } print'00分'; }elseif($hun == 00){ if($nanji == 9){ print'終了時間:'; print $jikan; print'時'; }elseif($nanji == 1){ print'終了時間:'; print $jikan; print'時'; } print'30分'; } }elseif($yoyaku_menu == 'フルカラー(1時間)'){ if($nanji == 9){ $nanji++; print'終了時間:'; print $nanji; print '時'; }elseif($nanji == 1){ $jikan++; print'終了時間:'; print $jikan; print'時'; } print $hun; print'分'; } } ?> <form action="kami_done3.php" method="post"><br><br> <input type="submit" value="予約"> </body> </html>
ページ4 kami_done3.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> 課題</title> </head> <body> <?php $reservation_rid=$_POST['rid']; $reservation_username=$_POST['username']; $reservation_staffname=$_POST['staffname']; $reservation_selectedmenu=$_POST['selectedmenu']; $reservation_selectedday=$_POST['selectedday']; $reservation_starttime=$_POST['starttime']; $reservation_endtime=$_POST['endtime']; if($reservation_rid==''||$reservation_username==''||$reservation_staffname==''||$reservation_selectedmenu==''||$servation_selectedday==''||$reservation_starttime==''||$reservation_endtime=='') { print'入力データに問題があります。再入力してください。'; print'<form>'; print'<input type="button" onclick="history.back()" value="戻る">'; print'</form>'; } else { $dsn='mysql:dbname=reservation;host=localhost;charset=utf8'; $user='root'; $password=''; $dbh=new PDO($dsn,$user,$password); $dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $sql='INSERT INTO reservation(rid,username,staffname,selectedmenu,selectedday,starttime,endtime)VALUES(?,?,?,?,?)'; $stmt=$dbh->prepare($sql); $data[]=$reservation_rid; $data[]=$reservation_username; $data[]=$reservation_staffname; $data[]=$reservation_selectedmenu; $data[]=$reservation_selectedday; $data[]=$reservation_starttime; $data[]=$reservation_endtime; $stmt->execute($data); $dbh=null; print $reservation_rid; print 'さんの予約が完了しました。<br />'; } ?> </body> </html>
試したこと
データベースも登録しましたが、このようにエラーが出てしまいます。
0 コメント