Jump to content

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. 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.