★実現したい事★
edit.phpで表示された各項目の値を書き換え、update1.phpに出力しSQL文により更新。
★現状★
なんのエラーも出ないが、更新もされていない。
★試したこと★
元々update1.phpの方のSQL文は、列名=?,列目=?の形で記載していたが、execute()内で項目を実行するのはよくないと聞いた為、bindParamで値を渡す現在の文にしました。
参考にしているサイトだと1行ずつの更新になる為、出来れば一括で更新出来るような形にしたいですが、まだ時期尚早のようです。
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="update1.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
update1.php
1<?php 2$pdo = new PDO('mysql:host=localhost;dbname=workinfo;charset=utf8','user','user'); 3//IDを基に各項目の値を更新する 4$sql = "Update ogaki set (workday, workgroup, personal, product, createcnt, unit, bestbydata, remarks, worktime, breaktime) Values(?,?,?,?,?,?,?,?,?,?) where ogaki . where id=?"; 5//$sql = "UPDATE ogaki (workday, workgroup, personal, product, createcnt, unit, bestbydata, remarks, worktime, breaktime)Values(:workday, :workgroup, :personal, :product, :createcnt, :unit, :bestbydata, :remarks, :worktime, :breaktime) where id=?"; 6$stmt= $pdo -> prepare($sql); 7 $stmt -> bindParam(1,$_REQUEST['workday'],PDO::PARAM_STR); 8 $stmt -> bindParam(2,$_REQUEST['workgroup'],PDO::PARAM_STR); 9 $stmt -> bindParam(3,$_REQUEST['personal'],PDO::PARAM_STR); 10 $stmt -> bindParam(4,$_REQUEST['product'],PDO::PARAM_STR); 11 $stmt -> bindParam(5,$_REQUEST['createcnt'],PDO::PARAM_INT); 12 $stmt -> bindParam(6,$_REQUEST['unit'],PDO::PARAM_STR); 13 $stmt -> bindParam(7,$_REQUEST['bestbydata'],PDO::PARAM_STR); 14 $stmt -> bindParam(8,$_REQUEST['remarks'],PDO::PARAM_STR); 15 $stmt -> bindParam(9,$_REQUEST['worktime'],PDO::PARAM_STR); 16 $stmt -> bindParam(10,$_REQUEST['breaktime'],PDO::PARAM_STR); 17 $stmt -> bindParam(11,$_REQUEST['id'],PDO::PARAM_INT); 18 $stmt -> execute(); 19?> 20
回答2件
あなたの回答
tips
プレビュー