mcerveni Posted April 6, 2009 Share Posted April 6, 2009 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?? Quote Link to comment https://forums.phpfreaks.com/topic/152732-javascript-wont-run-in-php-page/ Share on other sites More sharing options...
iarp Posted April 6, 2009 Share Posted April 6, 2009 Have you tried closing and reopening php tags? <?php // php here ?> <script language="javascript"> var WinNetwork = new ActiveXObject("WScript.Network"); var empID = WinNetwork.UserName; alert(empID) </script> <?php // more php here ?> Quote Link to comment https://forums.phpfreaks.com/topic/152732-javascript-wont-run-in-php-page/#findComment-802052 Share on other sites More sharing options...
mcerveni Posted April 6, 2009 Author Share Posted April 6, 2009 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. Quote Link to comment https://forums.phpfreaks.com/topic/152732-javascript-wont-run-in-php-page/#findComment-802059 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.