Jump to content

open a new window


tayys

Recommended Posts

I would like to open a new IE window. But, failed to do that. Is there any wrong with my statements?

 

<?php
$url='http://www.google.com';
$browser = new COM("InternetExplorer.Application");
$browser->Visible = true;
$browser->Navigate($url);
?>

 

Can anyone help me with this pls?

 

Thank you.

 

Regards,

juzz

Link to comment
https://forums.phpfreaks.com/topic/248599-open-a-new-window/
Share on other sites

The onClick() function would require clicking, unless you used another JS function to click it for you (which would be pointless).

 

If you want it to open when loading the page, check out onload.  If you're using JQuery, you can just put it within the ready function.

Link to comment
https://forums.phpfreaks.com/topic/248599-open-a-new-window/#findComment-1276655
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.