Re: PHP output buffering

2009-02-19 Thread AD7six
Please ask your none-cakephp questions in an appropriate forum (i.e. a general php group/forum/etc.). On Feb 19, 12:37 pm, Double wrote: > code: > > $file = fopen("http://www.sample.com/index.asp?Page=1";, "r"); > > while (!feof($file))  { // file go through file one line at a time > >         $

Re: PHP output buffering

2009-02-19 Thread Double
code: $file = fopen("http://www.sample.com/index.asp?Page=1";, "r"); while (!feof($file)) { // file go through file one line at a time $line_wp = fgets($file_handle_wp); } it just gives me the asp file as code rather than interpreted by the server. Is there a way to get a process a

Re: PHP output buffering

2009-02-19 Thread Marcelius
And what does this have to do with cakephp? :-) On 19 feb, 10:06, Double wrote: > I'm trying to execute an asp page from php and get the executed web > page (html) to parse. > > When I run fopen, it just returns the actual script. > > Any ideas? --~--~-~--~~~---~--~--

Re: PHP output buffering

2009-02-19 Thread John Andersen
On Feb 19, 11:06 am, Double wrote: > I'm trying to execute an asp page from php and get the executed web > page (html) to parse. > > When I run fopen, it just returns the actual script. > > Any ideas? Please specify how you are opening the asp page! (Code!) Enjoy, John --~--~-~--~--

PHP output buffering

2009-02-19 Thread Double
I'm trying to execute an asp page from php and get the executed web page (html) to parse. When I run fopen, it just returns the actual script. Any ideas? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" g