1 / 8

ตัวอย่างการเขียนหนังสือเยี่ยมชม

ตัวอย่างการเขียนหนังสือเยี่ยมชม. ตัวอย่างการเขียนหนังสือเยี่ยมชม. DATABASE : Students TABLE : Guestbook IDGB INT AUTO INCREMENT NAME VARCHAR (100) EMAIL VARCHAR (100) DETAIL VARCHAR (8000) IP VARCHAR (100) DATETIME DATETIME. ตัวอย่างการเขียนหนังสือเยี่ยมชม. <? php

sydnee
Download Presentation

ตัวอย่างการเขียนหนังสือเยี่ยมชม

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม

  2. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม DATABASE : Students TABLE : Guestbook IDGB INT AUTO INCREMENT NAME VARCHAR (100) EMAIL VARCHAR (100) DETAIL VARCHAR (8000) IP VARCHAR (100) DATETIME DATETIME

  3. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม <?php $host = "localhost"; $user = "root"; $pass = "12345678"; $dbname = "Students"; if($condb= mysql_connect($host,$user,$pass)){ $selectdb = mysql_select_db($dbname,$condb); mysql_db_query($dbname,"SET NAMES UTF8"); } else { echo "ไสามารถติดต่อฐานข้อมูล MySQL ได้"; } ?> connectdb.php

  4. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม addGuestbook.php <form id="frmStudent" name="frmStudent" method="post" action="postGuestbook.php"> ชื่อ-สกุล <input name="txtName" type="text" id="txtName" maxlength="50" /> อีเมล์ <input name="txtEmail" type="text" id="txtEmail" maxlength="50" /> รายละเอียด <textarea name="txtDetail" cols="30" rows="4" id="txtDetail"></textarea> <input type="submit" name="Submit" value="ตกลง" /> <input type="reset" name="Submit2" value="ยกเลิก" /> </form>

  5. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม <?php include("connectdb.php"); $NAME = $_POST["txtName"]; $EMAIL = $_POST["txtEmil"]; $DETAIL = $_POST["txtDetail"]; $IP = $_SERVER['REMOTE_ADDR']; $DATETIME = date("Y-m-d H:i:s"); $sql = "INSERT INTO GUESTBOOK(NAME,EMAIL,DETAIL,IP,DATETIME)"; $sql .= " Values('$NAME','$EMAIL','$DETAIL','$IP','$DATETIME')"; mysql_query($sql); mysql_close($condb); echo "ขณะนี้ SERVER ได้รับข้อมูลของท่านแล้ว <a href='Guestbook.php'>คลิกที่นี่เพื่อกลับไปหน้าแรก</a>" ?> postGuestbook.php

  6. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม Guestbook.php

  7. ตัวอย่างการเขียนหนังสือเยี่ยมชมตัวอย่างการเขียนหนังสือเยี่ยมชม <?php include("connectdb.php"); $sql = mysql_query("SELECT * FROM guestbook "); while($data = mysql_fetch_array($sql)){ ?> <table width="500" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="126" height="25" bgcolor="#FFFFCC">ชื่อ - สกุล </td> <td width="374" height="25"><a href="mailto:<?php echo $data[EMAIL]; ?>"><?php echo $data[NAME]; ?></a></td> </tr> <tr> <td height="25" bgcolor="#FFFFCC">ข้อความ</td> <td height="25"><?php echo $data[DETAIL]; ?></td> </tr> <tr> <td height="25" bgcolor="#FFFFCC">วันที่/เวลา </td> <td height="25"><?php echo $data[DATETIME]; ?></td> </tr> <tr> <td height="25" bgcolor="#FFFFCC">หมายเลขเครื่อง</td> <td height="25"><?php echo $data[IP]; ?></td> </tr> </table> <?php } mysql_close($condb); ?> Guestbook.php

  8. Q & A

More Related