Thanks for the help Folks, I am getting there. I changed the code on the page (see below) Now I get a display.
You can see that the data is displayed here
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<?php
$dbh=mysql_connect ("localhost", "rofarms_mike", "pwhere") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("rofarms_orders");
$query = "SELECT * FROM shiptoinfo";
$result = mysql_query($query);
while($row = mysql_fetch_array($result , MYSQL_NUM))
{
echo $row[0] . $row[1] ;
}
?>
</body>
</html>
All that is being displayed is 1 field(column) of info from the 2 records in the db.
I would like to now modify the code above to be able to display the data in a format like this:
invnum (note=this is the only info being displayed with the above code)
next column data
next columd data
next columd data
etc...
invnum (note=this is the only info being displayed with the above code)
next column data
next columd data
next columd data
etc...
Regards,
Blue