Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.