>
> fputs($filepointer, "the line that I want");
>
> This is painful.  I want it to just spit out text that is already in
> paragraphs and junk with all of the HTML Code.
>
> Is there a way to do it the same way I predeclare printing with
> print <<<ENDTAG
> yadda
> ENDTAG;


You can use fwrite instead
        fwrite( $fp, '<p>' . $your_text . '</p>' );

---
Jos


[Non-text portions of this message have been removed]



Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to