Hi,
i am getting the problem with php code inside javascript function in Internet Explorer.Here is my javascript and php code.
addPoints() is javascript function. It is not working in IE6,IE7 and works fine in Mozilla. When i used in IE i am getting the error as
" Microsoft Internet Explorer could not open the page .Operation aborted."
Anybody please tell the solution how can resolve that problem in IE.
Thanks
Swethak
i am getting the problem with php code inside javascript function in Internet Explorer.Here is my javascript and php code.
Code:
function addPoints() {
<?
$query=mysql_query("select * from offices");
while($row=mysql_fetch_array($query)){
?>
newpoints[0] = new Array('-33.8673', '151.2041', icon0, 'testing', 'testing');
<?
}
?>
}
" Microsoft Internet Explorer could not open the page .Operation aborted."
Anybody please tell the solution how can resolve that problem in IE.
Thanks
Swethak
Comment