Skip to main content

Fetching data into mysql AND php

LIST DATA FROM MYSQL TABLE USED PHP


<html>
<head>
<title>php and mysql by sam saifi</title>
</head>
<body>
Fetching data into mysql table on localhost
step by step
step1:- create connection to data  like $con.
step2:-select database like $db.
step3:- write query like $sql.
step4:-fetching  data in loop like while loop
step5:- create object in loop like $row.
step6:-execute object with table colum name like $row['name'];

<?
$con = mysql_connect("localhost","sam","") or die(mysql_error());// here  sam is  user name
$db = mysql_select_db("sam");//here sam is data base name
$sql = "SELECT * FROM cust";
$query = mysql_query($sql) or die ("error Query [".$sql."]");
?>
<table   >
  <tr>
    <th  > <div >id </div></th>
    <th  > <div >name </div></th>
    <th  > <div >e-mail </div></th>
    <th  > <div >School </div></th>
   </tr>
<?
while($row = mysql_fetch_array($query))
{
?>
  <tr>
    <td><div ><?php $row["id"];?></div></td>
    <td><?php $row["name"];?></td>
    <td><?php $row["e-mail"];?></td>
    <td><div ><?php $row["School"];?></div></td>
   </tr>
<?
}
?>
</table>
<?
mysql_close($con);
?>
</body>
</html>
<!--- php tutorials with sam saifi -->

Comments

Popular posts from this blog

Minimum and maximum number with - and + 500 in Mysql and Sql query and Find out table scheema of our database in Mysql and sql query and Find out all table name of our database in Mysql and sql query and Find out current date and time in mysql and sql help of sql query

Minimum and maximum number with - and + 500 in Mysql and Sql query:- syntax:-  SELECT MIN(Used)-500 , max(Used)+500 FROM audit Find out current date and time in mysql and sql help of sql query:- syntax:- SELECT now() Find out database name in Mysql and sql query:- syntax:-  SELECT DATABASE(); Find out all table name of our database in Mysql and sql query:- syntax:- SHOW TABLES; Find out   table scheema   of our database in Mysql and sql query:- syntax:- DESCRIBE <table name>;

Notice: register_sidebar was called incorrectly. No id was set in the arguments array for the "Sidebar Top" sidebar.

Notice: register_sidebar was called incorrectly. No id was set in the arguments array for the "Sidebar Top" sidebar. add this code:-wp-include/config.php   change: define('WP_DEBUG', flase);  to below code here: // Enable WP_DEBUG mode define('WP_DEBUG', true); // Enable Debug logging to the /wp-content/debug.log file define('WP_DEBUG_LOG', true); // Disable display of errors and warnings  define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors',0);

Wordpress Database tabel Description image

Wordpress Database tabel Description image