thaiall logomy background
coding : training49_php_error.php
my town
โค้ดดิ้ง : Perl | PHP | ASP | JSP | HTML | HTML5 | JavaScript | Java | COBOL | C++ | MS Access | VB.Net | VB | Python | โค้ดดี
File : training49_php_error.php ID : 9148
Skin : Default | Sons-of-obsidian | Sunburst | Highlighter | Full
Short code : php+mysql+insert (2563) <?php exit(); ?>
/* 1- use phpmyadmin in test database */
create table mem(uid int not null auto_increment,u  varchar(50), p varchar(50), 
t varchar(1), primary key (uid));
insert into mem values (0,"admin","nation","a");
insert into mem values (0,"boy","girl","u");
/* 2 - index.php */
<a href="signin.php">signin.php</a>
<a href="signout.php">signout.php</a>
<a href="list.php">list.php</a>
<a href="insert.php">insert.php</a>
/* 3 - signin.php */
<form action="check.php">
<input name=u><input name=p>
<input type=submit></form>
/* 4 - signout.php */
<?php session_start();
$_SESSION["t"] = "";
echo '<a href=index.php>back</a>'; ?>
/* 5 - check.php */
<?php session_start();
$connect = new mysqli("127.0.0.1", "root", "", "test");
$result = $connect->query("select * from mem");
$_SESSION["t"] = "";
if ($result->num_rows > 0) 
  while($row = $result->fetch_assoc()) {
    if($row["u"] == $_REQUEST["u"] && $row["p"] == $_REQUEST["p"]) $_SESSION["t"] = $row["t"];
  }
echo '<a href="index.php">back</a><br/>' . $_SESSION["t"];
$connect->close(); ?>
/* 6 - list.php */
<?php session_start();
if(!isset($_SESSION["t"]) || strlen($_SESSION["t"]) == 0) {
echo '<a href=index.php>back</a> exit()';
}
$connect = new mysqli("127.0.0.1", "root", "", "test");
$result = $connect->query("select * from mem");
echo $result->num_rows . "<br/>";
if ($result->num_rows > 0) {
  while($row = $result->fetch_assoc()) {
    echo  $row['u'] .  $row['p'] .  $row['t'] . "<br/>";
  } }
echo '<a href=index.php>back</a>' ;
$connect->close(); ?>
/* 7 - insert.php */
<form action="addrec.php" method="post">
<input name=u><input name=p><input name=t><input type=submit>
</form>
/* 8 - addrec.php */
<?php session_start();
if(!isset($_SESSION["t"]) || strlen($_SESSION["t"]) == 0) {
die ('<a href=index.php>back</a>');
}
$connect = new mysqli("127.0.0.1", "root", "", "test");
$sql = "insert into mem values (0,'" .$_POST["u"] ."','" . $_POST["p"] ."','". $_POST["t"] ."')";
$result = $connect->query($sql);
if($result === FALSE)  echo "$sql : failed"; else echo "$sql : succeeded";
echo '<br/><a href=index.php>back</a>' ;
$connect->close(); ?>
Code details
File nametraining49_php_error.php
stat() : modtime2020-11-13 21:46
File size2163 bytes
Lines59 บรรทัด
{5 ตัว
}5 ตัว
;31 ตัว
'24 ตัว
"108 ตัว
Space226 ตัว
Tab0 ตัว
cover imageาษาเฮชทีเอ็มแอล (HTML = HyperText Markup Language) คือ ภาษาคอมพิวเตอร์ที่ออกแบบมาเพื่อใช้ในการสร้างเว็บเพจที่เรียกดูผ่านทางเว็บเบราว์เซอร์ (Web Browser) เริ่มพัฒนาโดย ทิม เบอร์เนอรส์ ลี (Tim Berners Lee) ในปัจจุบัน HTML ล่าสุดคือ รุ่น 5 เป็นมาตรฐานหนึ่งของ ISO ซึ่งจัดการโดย World Wide Web Consortium (W3C) ในปัจจุบัน ทาง W3C ผลักดัน รูปแบบของ HTML แบบใหม่ ที่เรียกว่า XHTML รุ่นแรกคือ 1.0 (ม.ค.2543) ซึ่งมีโครงสร้างเป็นแบบ XML (eXtensible Markup Language)
าษาพีเอชพี (PHP Language) คือ ภาษาคอมพิวเตอร์ประเภทโอเพนท์ซอร์ท (Open Source Computer Language) สำหรับพัฒนาเว็บเพจแบบไดนามิก เมื่อเครื่องบริการได้รับคำร้องจากผู้ใช้ก็จะส่งให้กับ ตัวแปลภาษา ทำหน้าที่ประมวลผลและส่งข้อมูลกลับไปยังเครื่องของผู้ใช้ที่ร้องขอ ในรูปเอชทีเอ็มแอล ภาพ หรือแฟ้มดิจิทอลอื่นใด ลักษณะของภาษามีรากฐานคำสั่งมาจากภาษาซี เป็นภาษาที่สามารถพัฒนาให้ใช้งานแบบโต้ตอบกับผู้ใช้ได้
ตัวอย่าง Hello World
ส่งข้อมูลออกเป็น ส่งออก: image ส่งออก: pdf
ปรับปรุงโปรแกรม source.pl : 2568-03-25
Thaiall.com