บทความ

กำลังแสดงโพสต์จาก กุมภาพันธ์, 2018

การเขียนโปรแกรม PHP กับ MySQL เพื่อดึงข้อมูลจาก Table มาแสดง

<?php $objConnect = mysql_connect("localhost","root","1234") or die(mysql_error()); $objDB = mysql_select_db("test"); mysql_query("SET NAMES UTF8"); ?> <html> <head> <title>PHP & MySQL Tutorial</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <?php $strSQL = "SELECT * FROM product"; $objQuery = mysql_query($strSQL) or die (mysql_error()); ?> <table width="1000" border="1"> <tr> <th width="91"> <div align="center">CustomerID </div></th> <th width="98"> <div align="center">Name </div></th> <th width="97"> <div align="center">CountryCode </div></th> <th width="198"> <div align="center">Email </div></th...