[PHP] Re: File download results question

2001-11-20 Thread Henrik Hansen
[EMAIL PROTECTED] (Joe Van Meer) wrote: > Is there another way to do this...I'd like to be able to display html code > on my php pages (code examples) cant you use str_replace() or something? -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Re: File download results question

2001-11-20 Thread Joe Van Meer
Is there another way to do this...I'd like to be able to display html code on my php pages (code examples) Thx Joe "Henrik Hansen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] (Joe Van Meer) wrote: > > > I figured it out... strip_tags() f

[PHP] Re: File download results question

2001-11-20 Thread Henrik Hansen
[EMAIL PROTECTED] (Joe Van Meer) wrote: > I figured it out... strip_tags() function did the trick . > use strip_tags with caution because it removes some valid text ex: something < something will be something after using strip_tags on the text. -- Henrik Hansen -- PHP General Mailing L

[PHP] Re: File download results question

2001-11-20 Thread Joe Van Meer
I figured it out... strip_tags() function did the trick . Joe "Joe Van Meer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi there. I have a small php app that allows a user to download a txt file > that's created 'on the fly' from a database. Everything