I am a php rookie and am having some issues with Dreamweaver MX 2004 and
php/mysql. I'm pretty sure that I have both installed correctly since I have
created and used databases in mysql and run a phpinfo script and viewed all of
the version info in my browser (4.3.11).
I am developing pages locally not over a network.
When I create a php page withou trying to connect to mysql, the page displays
as I would expect it to.
When I create a php page in Dreamweaver that connects to a mysql database, it
tests out fine in Dreamweaver (I am able to view my data in live data view).
When I preview it in Safari , all I get is a blank page.
I turned on Display errors in php and got the following error message.

"Warning: main(Connections/antiquesconn.php): failed to open stream: No such
file or directory in /Library/WebServer/Documents/AntiquesBarn/catalog.php on
line 1

Fatal error: main(): Failed opening required 'Connections/antiquesconn.php'
(include_path='.:/usr/local/php/lib/php') in
/Library/WebServer/Documents/AntiquesBarn/catalog.php on line 1"

FOr some reason I am not able to connect to the database through my browser.

I am running OS X 10.4.4
Personal web sharing is turned on
I am able to serve pages from my computer

Any help would be appreciated

<?php require_once('Connections/antiquesconn.php'); ?>
<?php
mysql_select_db($database_antiquesconn, $antiquesconn);
$query_Recordset1 = "SELECT * FROM stockitems ORDER BY itemname ASC";
$Recordset1 = mysql_query($query_Recordset1, $antiquesconn) or
die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<html>
<head>
<title>Antiques Barn Catalog</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="antique_scripts.js"></script>
<link href="antique_styles.css" rel="stylesheet" type="text/css">
</head>

<body bgcolor="#FFFFFF" text="#000000"
onLoad="MM_preloadImages('images/home_button_over.gif','images/search_button_ove
r.gif','images/register_button_over.gif')">
<table width="640" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><p><img src="images/banner_sm_left.gif" width="222"
height="150"><img src="images/banner_catalog.gif" width="418"
height="150"></p></td>
</tr>
<tr valign="top">
<td colspan="3"><p><img src="images/redpix.gif" width="640" height="10"
vspace="10"></p></td>
</tr>
<tr><td colspan="3">
<table cellpadding="0" cellspacing="0">
<tr valign="top">
<td><p>&nbsp;</p>
<p>&nbsp;</p></td>
<td>&nbsp;</td>
<td><p class="itemname"><?php echo $row_Recordset1['itemname'];
?></p>
<p>&nbsp; </p>
<p class="price">$</p>
<p>&nbsp;</p></td>
</tr>
<tr>
<td><img src="images/transparent.gif" width="200" height="10"></td>
<td><img src="images/transparent.gif" width="20" height="10"></td>
<td><img src="images/transparent.gif" width="420" height="10"></td>
</tr>
</table>
</tr>
<tr>
<td colspan="3"><a href="index.html"
onMouseOver="MM_swapImage('Image1','','images/home_button_over.gif',1)"
onMouseOut="MM_swapImgRestore()"><img src="images/home_button.gif"
name="Image1" width="128" height="23" border="0"></a><img
src="images/catalog_button_over.gif" width="186" height="23"><a
href="search.php"
onMouseOver="MM_swapImage('Image2','','images/search_button_over.gif',1)"
onMouseOut="MM_swapImgRestore()"><img src="images/search_button.gif"
name="Image2" width="183" height="23" border="0"></a><a href="register.php"
onMouseOver="MM_swapImage('Image3','','images/register_button_over.gif',1)"
onMouseOut="MM_swapImgRestore()"><img src="images/register_button.gif"
name="Image3" width="143" height="23" border="0"></a></td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>