Using fopen on a site with popups
Using fopen on a site with popups
am 14.08.2009 10:15:16 von James Colannino
Hey everyone! I have a question. I know that you can use fopen to open
not just local files, but also files via HTTP. My question is, assuming
you're attempting to open a page that has popups, is there anyway to get
at the actual content underneath the popup?
Thanks!
James
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Re: Using fopen on a site with popups
am 14.08.2009 10:16:41 von Ralph Deffke
have u tried?
I did not, but as far as I understand u getting the stream including the
html causing the browser to open an popup.
so what is ur real problem then?
"James Colannino" wrote in message
news:4A851D14.2010306@colannino.org...
> Hey everyone! I have a question. I know that you can use fopen to open
> not just local files, but also files via HTTP. My question is, assuming
> you're attempting to open a page that has popups, is there anyway to get
> at the actual content underneath the popup?
>
> Thanks!
>
> James
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Re: Using fopen on a site with popups
am 14.08.2009 10:18:38 von Ashley Sheridan
On Fri, 2009-08-14 at 01:15 -0700, James Colannino wrote:
> Hey everyone! I have a question. I know that you can use fopen to open
> not just local files, but also files via HTTP. My question is, assuming
> you're attempting to open a page that has popups, is there anyway to get
> at the actual content underneath the popup?
>
> Thanks!
>
> James
>
As far as I'm aware, you won't get any popups using fopen. Popups are a
thing of Javascript (or links clicked on that have a target other than
_self, _parent or _top) so just calling the page won't trigger them to
be opened.
Thanks,
Ash
http://www.ashleysheridan.co.uk
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Re: Re: Using fopen on a site with popups
am 14.08.2009 10:40:22 von James Colannino
Ralph Deffke wrote:
> have u tried?
>
> I did not, but as far as I understand u getting the stream including the
> html causing the browser to open an popup.
>
> so what is ur real problem then?
Yeah, ummm...
Sorry for the traffic. That was a really stupid question... It looks
like the format of a page I was reading data from changed, which messed
something else up. It just recently started implementing popup ads as
well, so I blamed that, but as another poster pointed out, popups are
caused by javascript execution in the browser, so that shouldn't have
any effect on the content I read.
Me needs to get some sleep :)
James
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Re: Re: Using fopen on a site with popups
am 14.08.2009 10:50:38 von Ralph Deffke
well included in a html