kingrick04 Posted May 6, 2007 Share Posted May 6, 2007 Hello, I am trying to display the contents of a database on a webpage, this code is currently in a .htm file (is this wrong?) <html> <head> <meta http-equiv="Content-Language" content="en-gb"> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>The Friends Of Ulley Country Park</title> </head> <body> <font face="arial"> <body bgcolor="Green"> <p><center>Nature Collection</center></p> <?php // Make a MySQL Connection mysql_connect("ulley@localhost", "ulley_ulley", "passwordhere") or die(mysql_error()); mysql_select_db("ulley_wildlife") or die(mysql_error()); // Get all the data from the "example" table $result = mysql_query("SELECT * FROM Creature") or die(print ($result)); echo "<table border='1'>"; echo "<tr> <th>CreatureID</th> <th>CreatureEngName</th> </tr>"; // keeps getting the next row until there are no more to get while($row = mysql_fetch_array( $result )) { // Print out the contents of each row into a table echo "<tr><td>"; echo $row['CreatureID']; echo "</td><td>"; echo $row['CreatureEngName']; echo "</td></tr>"; } echo "</table>"; ?> <!-- --><script type="text/javascript" src="/i.js"></script></body> </html> Nothing is displayed on the page, please help, i am new to this! Thanks Link to comment https://forums.phpfreaks.com/topic/50233-mysqlphp-script-problem-please-help/ Share on other sites More sharing options...
paul2463 Posted May 6, 2007 Share Posted May 6, 2007 yes for php script to run it has to be a php page Link to comment https://forums.phpfreaks.com/topic/50233-mysqlphp-script-problem-please-help/#findComment-246569 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.