Home » Categories » Multiple Categories

How do I query MySQL Database in PHP ?

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 Attachments
There are no attachments for this article.
Related Articles RSS Feed
Do you support MySQL WebAdmin Access?
Viewed 2842 times since Tue, May 1, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 8950 times since Mon, Jul 17, 2017
What is the connection string for my mariaDB database?
Viewed 1192 times since Fri, Jun 26, 2020
My website session times out earlier than expected. Why?
Viewed 4549 times since Tue, May 1, 2012
About Azure Key Vault
Viewed 1116 times since Mon, Nov 2, 2020
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 6073 times since Tue, May 1, 2012
What is the connection string for my MySQL database?
Viewed 3632 times since Mon, May 7, 2012