Home » Categories » Multiple Categories |
How do I query MySQL Database in PHP ? |
Article Number: 86 | Rating: Unrated | Last Updated: Tue, May 1, 2012 at 11:21 PM
|
Please follow the following guidelines: <html>
<head>
<title>MySQL Test Code</title>
</head>
<body>
<h1>MySQL Test Code Results</h1>
<p>
<table border="1">
<tr>
<td>pkID</td>
<td>username</td>
<td>password</td>
</tr>
<?php
/*
* Configuration Information and Definitions
*/
$mysql_host = mysql01.discountasp.net;
$mysql_user = username;
$mysql_pass = password;
$mysql_db = database;
$query = SELECT * from table1;
mysql_connect($mysql_host, $mysql_user, $mysql_pass) or die("Connection to MySQL-server failed!");
mysql_select_db($mysql_db) or die("Selection of database $mysql_db failed!");
$result = mysql_query($query) or die("Invalid Query, " . mysql_error());
while( list( $pkid, $user, $pass ) = mysql_fetch_row($result) )
{
printf("<tr><td>%d</td><td>%s</td><td>%s</td></tr>", $pkid, $user, $pass);
}
?>
</table>
</p>
<h1>End MySQL Test Code Results</h1> |
Attachments
![]()
There are no attachments for this article.
|
About Azure Key Vault
Viewed 1525 times since Mon, Nov 2, 2020
Can i login to my MySQL database via my own mySQL tool?
Viewed 2879 times since Mon, May 7, 2012
What is the connection string for my MySQL database?
Viewed 4005 times since Mon, May 7, 2012
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 31649 times since Mon, Apr 1, 2013
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 10901 times since Tue, Sep 11, 2012
How to Solve an Error Message "Validation of viewstate MAC failed"
Viewed 9191 times since Tue, Apr 2, 2013
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 2782 times since Tue, May 1, 2012
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5060 times since Wed, Oct 24, 2018
My website session times out earlier than expected. Why?
Viewed 4802 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET 2
Viewed 9587 times since Tue, May 1, 2012
|