phpでカウントアップとカウントダウンをクリックで行い
合計を出す処理を書いていますが
エラーがでるのでご教授頂きたいです。
また、$トータルを別のページで表示させたいのですが
requireでうまくいきません。
php
1 2 3<?php 4$cut = 0; 5 6if($_POST['cut']){ 7 $cut = $_POST['cut']; 8} 9 10if( $_POST['cutplus'] ) { 11 $cut++; 12}elseif( $_POST['cutminus'] ){ 13 $cut--; 14 15} 16 17$color = 0; 18 19if($_POST['color']){ 20 $color = $_POST['color']; 21} 22 23if( $_POST['colorplus'] ) { 24 $color++; 25}elseif( $_POST['colorminus'] ){ 26 $color--; 27 28} 29 30$total = 0; 31 32$total = $cut + $color; 33 34 35?> 36 37<?=$total?> 38 <?=$cut?> 39 <?=$color?> 40 <form action="" method="POST"> 41 <input type="hidden" name="cut" value="<?=$cut?>"> 42 <input type="submit" name="cutplus" value="受付"> 43 </form> 44 45<form action="" method="POST"> 46 <input type="hidden" name="cut" value="<?=$cut?>"> 47 <input type="submit" name="cutminus" value="ご案内"> 48 </form> 49 <br> 50 <form action="" method="POST"> 51 <input type="hidden" name="color" value="<?=$color?>"> 52 <input type="submit" name="colorplus" value="受付"> 53 </form> 54 55<form action="" method="POST"> 56 <input type="hidden" name="color" value="<?=$color?>"> 57 <input type="submit" name="colorminus" value="ご案内"> 58 </form> 59
エラー
Notice: Undefined index: cut in C:\xampp\htdocs\gomi\newfile.php on line 4
Notice: Undefined index: cutplus in C:\xampp\htdocs\gomi\newfile.php on line 8
Notice: Undefined index: cutminus in C:\xampp\htdocs\gomi\newfile.php on line 10
Notice: Undefined index: color in C:\xampp\htdocs\gomi\newfile.php on line 17
Notice: Undefined index: colorplus in C:\xampp\htdocs\gomi\newfile.php on line 21
Notice: Undefined index: colorminus in C:\xampp\htdocs\gomi\newfile.php on line 23
回答1件
あなたの回答
tips
プレビュー