[PHP-DB] Re: file_get_contents

2005-11-20 Thread David Robley
Ron Piggott wrote: > I have given the command > > file_get_contents($web_page_address); > > (I changed this from an array last week) > > But after 1015 characters of typing file_get_contents is truncating the > text. I am wondering if there is a PHP setting which is causing this to > happen. B

[PHP-DB] file_get_contents

2005-11-20 Thread Ron Piggott
Ok. Here is some code: $message = file_get_contents($web_page_address); #in this situation $web_page_address is equal to http://www.actsministrieschristianevangelism.org/christianliving/how_do_I_respond_to_people_at_my_church_doing_their_hour_of_religion.html mail($to,$subject,$message,$headers)

Re: [PHP-DB] file_get_contents

2005-11-20 Thread Ron Piggott
This just got interesting. It does this error just through e-mail. If I run an 'echo $message;' the entire file which has been loaded displays correctly. My mail syntax is mail($to,$subject,$message,$headers) where $message is the HTML file text I am attempting to e-mail. file_get_contents i

Re: [PHP-DB] file_get_contents

2005-11-20 Thread David Robley
Ron Piggott wrote: > This just got interesting. It does this error just through e-mail. If > I run an 'echo $message;' the entire file which has been loaded displays > correctly. > > My mail syntax is > > mail($to,$subject,$message,$headers) > > where $message is the HTML file text I am attem