MySQL 기반에서 여러 행을 제거하는 작업에 직면하여 코딩 지혜에 대한 깊은 깨달음을 구했습니다. . 이러한 데이터 정리 노력을 시작하는 동안 극복할 수 없는 장애물에 부딪힌 것 같습니다.
당신이 작성한 코드는 의도는 훌륭했지만 행 소멸이라는 의도된 목적을 실행하지 못했습니다. 이 장애물을 극복하기로 결심하고 귀하는 존경받는 코딩 커뮤니티에 귀하의 코드를 제시하여 지침을 구합니다.
<code class="html">// PHP witchcraft to connect to MySQL $dbc = mysqli_connect('localhost', 'root', 'admin', 'sample') or die('MySQL is out to get you!'); $query = "select * from links ORDER BY link_id"; $result = mysqli_query($dbc, $query) or die('Whoops! Query went awry!'); $count = mysqli_num_rows($result);</code>
<code class="html">// Assemble your army of checkboxes while ($row = mysqli_fetch_array($result)) { echo <<<HTML <tr> <td><input type="checkbox" name="checkbox[]" value="$row[link_id]"></td> <td>$row[link_id]</td> <td>$row[link_name]</td> <td>$row[link_url]</td> </tr> HTML; }</code>
<code class="html">// The arsenal of deletion awaits your command if (isset($_POST['delete'])) { // Retrieve your checked victims $checkbox = $_POST['checkbox']; // Summon the wrath of deletion upon each victim foreach ($checkbox as $del_id) { $sql = "DELETE FROM links WHERE link_id='$del_id'"; // Unleash the purging power! $result = mysqli_query($dbc, $sql); } // If successful, redirect to the crime scene if ($result) { echo '<meta http-equiv="refresh" content="0;URL=view_links.php">'; } }</code>
아아, 귀하의 코드는 다음과 같은 이유로 인해 흔들립니다. 몇 가지 중요한 실수:
이러한 수정을 통해 코드는 디지털 마법사처럼 행을 추방합니다. 새로운 자신감을 가지고 데이터 정리 퀘스트를 시작하세요!
위 내용은 PHP에서 체크박스를 사용하여 여러 데이터베이스 행을 올바르게 삭제하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!