Jump to content

javascript won't run in php page!


mcerveni

Recommended Posts

All i want to do is make this javascript code run in my php page.

 

<script language="javascript"> 
var WinNetwork = new ActiveXObject("WScript.Network"); 
var empID = WinNetwork.UserName;
alert(empID)
</script>

 

When i put it in, the browser says ActiveXObject not defined.

 

When i make the page an HTML page, the script WILL run.

 

So tell me..how would i make it work in my php page?.

 

i tried echoing the script in my php page. still no luck.

 

any suggestions??

Link to comment
https://forums.phpfreaks.com/topic/152732-javascript-wont-run-in-php-page/
Share on other sites

Well that doesnt seem to work at all..

but i've tried this:

 

<?php echo '
<script language="javascript"> 
var WinNetwork = new ActiveXObject("WScript.Network"); 
var empID = WinNetwork.UserName;
alert(empID)
</script>
';
?>

still no luck, still says ActiveXObject not defined. 

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.