I put that in, but I'm not seeing any errors... the page just seems to stop executing at the point where I connect to my database, which I assume is because of an error.
This is the code block...
<?
$db = 'database\jobs.mdb';
$conn = new COM('ADODB.Connection');
$conn->Open("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=$db");
$sql = 'SELECT * FROM JobListing';
$rs = $conn->Execute($sql);
?>
And using Echos, I found it just stops at the $rs=$conn-> line.
I placed this just after the body section then...
<?
error_reporting(E_ALL);
?>
Does it need to be at the top??? All I have is crummy Frontpage which doesn't like PHP and keeps moving it back into the body when I save.