View Single Post
Old 06-18-2007, 03:20 AM   #23 (permalink)
Salchester
Salchester
 
Salchester's Avatar
 
Join Date: Jul 2005
Location: In a house
Posts: 230
Salchester is an unknown quantity at this point
Insert Table Data into Array

DJMaze,

How come the following doesn't work, when code is included from previous posts?

Code:
<?php

header('Content-type: text/plain');

$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
  die('Could not connect: ' . mysql_error());
}

mysql_select_db("WB", $con);

$result = mysql_query("select * from Birds");

$records = array();
while ($array = mysql_fetch_assoc($result))
{
  $records[0]['Name'];
}
print_r($records);

?>
__________________
Many Thanks, in advance!

Salchester.
The Future Is Here - Are You Ready?
Salchester is offline   Reply With Quote