出ているエラーコードは、下記の通りです。
Parse error: syntax error, unexpected '$sql' (T_VARIABLE) in C:\xampp\htdocs\update.php on line 6
このSQL文のどこに問題があるのでしょうか?
6行目
update table名 set workday=?, workgroup=?, personal=?, product=?, createcnt=?, unit=?, bestbydata=?, remarks=?, worktime=?, breaktime=? where id=?
edit.php(特に問題なし)
1<head> 2 <link rel="stylesheet" href="css/edit.css" type="text/css"> 3 <link href="https://fonts.googleapis.com/css?family=M+PLUS+1p&display=swap" rel="stylesheet"> 4 <title>編集画面</title> 5</head> 6<?php 7$pdo = new PDO('mysql:host=localhost;dbname=workinfo;charset=utf8','root','root'); 8?> 9<table border ="1" class="table"> 10<tr> 11<th>ID</th> 12<th>作業日</th> 13<th>グループ</th> 14<th>担当者</th> 15<th>製造製品</th> 16<th>生産数</th> 17<th>単位</th> 18<th>賞味期限</th> 19<th>備考</th> 20<th>就業時間</th> 21<th>休憩時間</th> 22</tr> 23<?php foreach ($pdo ->query('SELECT * FROM ogaki')as $row){ // where workdayで抽出条件を設定する 24 echo '<tr>'; 25 echo '<form action="update.php" method="post">'; 26 echo '<input type="hidden" name="id" value="',$row['id'],'">'; 27 echo '<td>',$row['id'],'</td>'; 28 echo '<td>','<input type ="date" name="workday" value="',$row['workday'],'">','</td>';//dateを使うなら、SQLの前でreplace 29 echo '<td><input type ="text" name="workgroup" value="',$row['workgroup'],'"></td>'; 30 echo '<td><input type ="text" name="personal" value="',$row['personal'],'"></td>'; 31 echo '<td><input type ="text" name="product" value="',$row['product'],'"></td>'; 32 echo '<td><input type ="text" name="createcnt" value="',$row['createcnt'],'"></td>'; 33 echo '<td><input type ="text" name="unit" value="',$row['unit'],'"></td>'; 34 echo '<td><input type ="text" name="bestbydata" value="',$row['bestbydata'],'"></td>'; 35 echo '<td><input type ="text" name="remarks" value="',$row['remarks'],'"></td>'; 36 echo '<td><input type ="text" name="worktime" value="',$row['worktime'],'"></td>'; 37 echo '<td><input type ="text" name="breaktime" value="',$row['breaktime'],'"></td>'; 38 echo '<td><input type="submit" value="更新"></td>'; 39 echo '</form>'; 40 echo '</tr>'; 41} 42?> 43</table> 44
update.php
1<?php 2$pdo = new PDO('mysql:host=localhost;dbname=workinfo;charset=utf8','root','root'); 3 4var_dump() 5//IDを基に各項目の値を更新する 6$sql = $pdo -> prepare('update ogaki set workday=?, workgroup=?, personal=?, product=?, createcnt=?, unit=?, bestbydata=?, remarks=?, worktime=?, breaktime=? where id=?'); 7if (empty($_REQUEST['workday'])){ 8 echo '日付はYYYY-MM-DDの形で入力してください。'; 9}elseif(!preg_match('/[0-9]+/',$_REQUEST['createcnt'])){ 10 echo '生産数は整数で入力してください。'; 11}elseif($sql -> execute($_REQUEST['workday'],$_REQUEST['workgroup'],$_REQUEST['personal'],$_REQUEST['product'] 12,$_REQUEST['createcnt'],$_REQUEST['unit'],$_REQUEST['bestbydata'],$_REQUEST['remarks'],$_REQUEST['worktime'], 13$_REQUEST['breaktime'],$_REQUEST['id']) 14){ 15 echo '更新に成功'; 16}else{ 17 echo '更新に失敗'; 18} 19?> 20
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。