Jump to content

Mysql/php script problem - please help!


kingrick04

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.