前提・実現したいこと
phpとmysqlでtodolistを作りっており、
空欄でクリックするとエラーをechoさせたいのですが、どこに書くべきかわからないため、
もしよかったら教えてください。
phpとhtmlの記載順がよくわかっておらず、phpから書いて、htmlを書く、
など決まりがあるのかも含めて教えていただけば幸いです。
コード
お手数をおかけしますがどうぞよろしくお願いいたします。
発生している問題・エラーメッセージ
syntax error, unexpected '{' in /home/vagrant/todos/Todolist.php on line 12
該当のソースコード
php
1<?php 2 try{ 3 $pdo = new PDO("mysql:host=localhost;dbname=mydb;charset=utf8","root",""); 4 $pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); 5 if(isset($_POST['submit'])){ 6 $name=$_POST['name']; 7 $sth=$pdo->prepare("INSERT INTO todos(name)VALUES(:name)"); 8 $sth->bindValue(':name',$name,PDO::PARAM_STR); 9 $sth->execute(); 10 } 11 elseif(isset($_POST['delete'])){ 12 $id=$_POST['id']; 13 $sth=$pdo->prepare("delete from todos where id=:id"); 14 $sth->bindValue(':id',$id,PDO::PARAM_INT); 15 $sth->execute(); 16 } 17 }catch(PDOException $e){ 18 echo($e->getMessage()); 19 } 20?>
html
1<!DOCTYPE HTML> 2<html lang="ja"> 3<head> 4 <title>Todo List</title> 5</head> 6 7<body class="container"> 8 <h1>Todo List</h1> 9 <form method="post" action=""> 10 <input type="text" name="name" value=""> 11 <input type="submit" name="submit" value="Add"> 12 </form> 13 <h2>Current Todos</h2> 14 <table class="table table-striped"> 15 <therad> 16 <th>Task</th> 17 <th></th> 18 </therad> 19 <tbody> 20<?php 21 $sth = $pdo->prepare("SELECT * FROM todos ORDER BY id DESC"); 22 $sth->execute(); 23 24 foreach($sth as $row) { 25?> 26 <tr> 27 <td><?= htmlspecialchars($row['name']) ?></td> 28 <td> 29 <form method="POST"> 30 <button type="submit" name="delete">Delete</button> 31 <input type="hidden" name="id" value="<?= $row['id'] ?>"> 32 <input type="hidden" name="delete" value="true"> 33 </form> 34 </td> 35 </tr> 36<?php 37 } 38?> 39 </tbody> 40 </table> 41<?php 42if(isset($_POST['submit'])&&(empty($_POST['name'])){ 43 echo "you should fill out"; 44} 45?> 46</body> 47</html>
補足情報(FW/ツールのバージョンなど)
PHP 5.6.40 、mysql 5.6.47 ,windows 10
回答2件
あなたの回答
tips
プレビュー