FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » General » PHP discussions » java script to php (Transfer variable value from java script to php in a php file)
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
java script to php [message #159578] Thu, 11 June 2009 16:42 Go to next message
aajkaal is currently offline  aajkaal   United States
Messages: 2
Registered: June 2009
Karma: 0
Junior Member
1 <script language='javascript'>
2 var strUsername;
3 var objNetwork;
4 objNetwork= new ActiveXObject("WScript.Network");
5 strUsername= objNetwork.Username;
6 strUsername= strUsername.toLowerCase();
7 document.write(strUsername);
8 </script>";
9
10 <?php
11
12 echo $strUsername;
I want to use strUsername (not just display) in the php code. How can I accomplish it


Regards,
aajkaal
Re: java script to php [message #159579 is a reply to message #159578] Thu, 11 June 2009 17:17 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
Add to JavaScript part:

window.location.href = "http://your.domain.com/script.php?strUsername=" + strUsername;

Add to PHP part:

echo "strUsername = ".$_GET['strUsername'];
Re: java script to php [message #159581 is a reply to message #159579] Thu, 11 June 2009 17:38 Go to previous message
aajkaal is currently offline  aajkaal   United States
Messages: 2
Registered: June 2009
Karma: 0
Junior Member
All the above code is inside one php file. So ...

Regards,
aajkaal
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Undefined index
Next Topic: Preg replace problem (again!)
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu May 02 07:54:16 GMT 2024

Total time taken to generate the page: 0.02725 seconds