Ok. So i have Condition.php and it opens a text file that has some HTML that gets changed frequently. condition.php displays that text file and since the text file has HTML inside of it Condidion.php displays the text file as HTML. with me still? For some reason it displays "Resource ID#1" instead of what it is supposed to display.

Here's the code i used to open the file and store it as a variable:
PHP Code:
    $rs fopen ("html.txt""r");
    
fclose ($rs);?> 
Here is the code i used to recall the variable:
PHP Code:
<?php echo $rs?>
what's wrong with it? It displays Resource ID#1 instead of displaying what it is supposed to.
PLEASE DEbug it for me?!?!