Retrieving data from MySql with PHP is a simple process however you should have the following things set up before implementing this process.
- You Created A Database
- You Granted Privileges to the database
- Created a config.php file to access the database
After you insert data into a database you will eventually need to be retrieving data from MySql with PHP. Here is a code that you can use for that.
Tip: Click on images to make them larger.
If you find anything wrong on this page or need further assistance please comment below or contact me.
🙂
Code For Retrieving Data From MySql with PHP
<?php include('config.php'); $con = new mysqli("$host", "$username", "$password", "$dbname"); $result = $con->query("SELECT * FROM TABLE") ; while ($row = $result->fetch_assoc()) { echo $row['row-name']; } $con->close(); ?>
Retrieving Data From MySql with PHP was last modified: October 18th, 2015 by
Subscribe To My YouTube Channel:
Please like, share and subscribe.
Advanced Programming Made Easy
I hope you enjoyed the article. If I was able to help you please consider a tip for the content.
One Time Tip
Reoccuring Tips
Cool People Share:
