Skip to content

Commit

Permalink
perf: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Faelayis committed Sep 25, 2024
1 parent 1029ae5 commit 687889a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion COM-2305/67-09-16/php/faculty/save.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function addFaculty($db, $id, $name) {
if ($stmt) {
mysqli_stmt_bind_param($stmt, "is", $id, $name);
if (mysqli_stmt_execute($stmt)) {
echo "Record added successfully.";;
echo "Record added successfully.";
} else {
echo "Error adding record: " . mysqli_stmt_error($stmt);
}
Expand Down
4 changes: 2 additions & 2 deletions COM-2305/67-09-16/sidebar/faculty/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<?php
include("../../php/faculty/search.php");

if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
if (mysqli_num_rows($result) > 0) {
while ($row = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td class='px-4 py-2'>" . htmlspecialchars($row['Fac_id']) . "</td>";
echo "<td class='px-4 py-2'>" . htmlspecialchars($row['Fac_name']) . "</td>";
Expand Down
3 changes: 2 additions & 1 deletion COM-2305/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ DocumentRoot "COM-2305"
> **พบปัญหา**
> เมื่อคุณใช้ฟังก์ชัน `setcookie()` หรือ `$_SESSION` หลายครั้งภายในสคริปต์เดียวกัน <br>
> *PHP* จะส่งเฉพาะที่กำหนดในบรรทัดสุดท้ายไปยังเบราว์เซอร์เท่านั้น
> แนะนำต้องใช้ PHP Engine Old Stable เพื่อแก้ปัญหา
- ต้องใช้ [NodeJS](https://nodejs.org/en) เวอร์ชัน 18 หรือมากกว่า
- ต้องใช้ [Express](https://nodejs.org/en) เวอร์ชัน 5.X หรือมากกว่า
- ต้องใช้ [serve-index](https://www.npmjs.com/package/serve-index) เวอร์ชัน 1.9.X หรือมากกว่า
- ต้องใช้ [sphp](https://www.npmjs.com/package/sphp) และ [PHP Engine](https://www.php.net/downloads.php)
- ต้องใช้ [sphp](https://www.npmjs.com/package/sphp) และ [PHP Engine](https://windows.php.net/download#php-8.2) เวอร์ชัน 8.2.12 (cgi-fcgi)

<ol>
<li>ติดตั้ง Node.js และ npm แล้วตรวจสอบว่า Node.js และ npm ติดตั้งแล้วโดยใช้คำสั่ง <code>node -v && npm -v</code>
Expand Down

0 comments on commit 687889a

Please sign in to comment.