Hi Guys,
I've included an abbreviated version of my problem:
<?
$link = mysql_connect('localhost', '', '');
mysql_select_db('typhoon');
$query = <<< EOF
SELECT * FROM posts WHERE post_id = '$id'
EOF;
$row = mysql_fetch_array(mysql_query($query));
?>
<BODY>
<?=$row['name']?>
<?
require( "reusable1.php" );
?>
<?=$row['topic_name']?>
</BODY>
In this example i can't get the value for "topic_name" to display...the "name" and "reusable1.php" are displayed.
It appears to end the script at the require()
Any ideas.
micmac