2017-10-18 10 views
-1

私はタスク用のプロジェクトで作業します。これは、データベース(MySQL)に入力タスクを入力し、その後にその入力をWebに表示するアプリケーションです。今度はMySQLの各IDのチェックボックスがあります。チェックボックスがオンになっていれば、MySQLタスクのボタンと更新は終了しますが、問題はここで各IDに異なる値を更新する方法です。私はタスクが「オーバー」であるか、タスクが「Not_Over」であることを意味します。CheckBoxをMySQLで異なるIDで更新する方法

+0

あなたはいくつかのコードを持っていますか –

答えて

0

はいNebojsaは、私はあなたが私のコード を見ることができます下に今、私はワッハのIDをsepareteのためのMySQLでこれを更新したい。..持って

<html> 
<head> 
<title> 
Task 
</title> 
</head> 
<body> 
<?php 
$servername = "localhost"; 
$username = "root"; 
$password = "123456789"; 
$db="task_db"; 

// Create connection 
$conn = new mysqli($servername, $username, $password, $db); 

    // Check connection 
    if ($conn->connect_error) { 
    die("Connection failed: " . $conn->connect_error); 
    } 
    echo "Konektovan na bazu MySQL<br>"; 
    ?> 
    <a href="add_a_new_task.php">ADD a new Task</a> | <a 
    href="review_tasks.php">Show Task</a> | <a 
    href="completed_tasks.php">Ended Task</a> 
    <hr> 


<?php 

    $Select = "SELECT * FROM tasks WHERE done LIKE 'NE'"; 
    $Result = $conn->query($Select); 


    echo '<table align="center" style="width:65%" border="2"> 
    <tr> 
    <th>O.R.</th> 
    <th>Name and LastName</th> 
    <th>Phone Number</th> 
    <th>Places</th> 
    <th>Task</th> 
    <th>Notes</th> 
    <th>Executes</th> 
    <th>Executed</th> 
    <th>Created day</th> 
    <th><input type="submit" name="add_task" value="Update Tasks"></th> 
    </tr>'; 
    if ($Result->num_rows > 0) { 
    // output data of each row 
    while($row = $Result->fetch_assoc()) { 
     $id = $row['ID']; 
     echo "<td> RB</td>"; 
     echo "<td>".$row["Name_and_Lastname"]."</td>"; 
     echo "<td>".$row["Phone_Number"]."</td>"; 
     echo "<td>".$row["Place"]."</td>"; 
     echo "<td>".$row["Task"]."</td>"; 
     echo "<td>".$row["Note"]."</td>"; 
     echo "<td>".$row["Executes"]."</td>"; 
     echo "<td>".$row["Done"]."</td>"; 
     echo "<td>".$row["Created_Date"]."</td>"; 
     echo "<td><input type='checkbox' name='vehicle' 
     value='task'>Finish</td>"; 
     echo "</tr>"; 
     } 
      } else { 

     echo "<tr><th colspan='4'>0 results</th></tr>"; 
     } 
     echo "</table>"; 



     $conn->close(); 

     ?> 

     </body> 
     </html> 
関連する問題