943,936 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 14118
  • PHP RSS
Apr 8th, 2008
0

want to pass php variable to javascript

Expand Post »
PHP Syntax (Toggle Plain Text)
  1. <html>
  2. <head>
  3. <SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
  4. <!--
  5. function login(t)
  6. {
  7. var t = '<?php echo $id; ?>';
  8. alert(t);
  9. }
  10. -->
  11. </SCRIPT>
  12. </head>
  13. <body>
  14. <?php
  15. $id=$_GET['id'];
  16. print "<input type='button' name='button' value='button' onClick='login('$id')'>";
  17. ?>
  18. </body>
  19. </html>
i want to alert the variable using onclick function.
Similar Threads
Reputation Points: 3
Solved Threads: 2
Junior Poster
kings is offline Offline
107 posts
since Nov 2007
Apr 8th, 2008
1

Re: want to pass php variable to javascript

Umm.. you are passing the id as a parameter. Why are you trying to assign the value of $id to t (in javascript function) ?
php Syntax (Toggle Plain Text)
  1. <html>
  2. <head>
  3. <SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
  4. <!--
  5. function login(t) {
  6. alert(t);
  7. }
  8. -->
  9. </SCRIPT>
  10. </head>
  11. <body>
  12. <?php
  13. $id=$_GET['id'];
  14. print "<input type='button' name='button' value='button' onClick=login('$id')>";
  15. ?>
  16. </body>
  17. </html>
This works just fine !
Moderator
Featured Poster
Reputation Points: 524
Solved Threads: 356
Purple hazed!
nav33n is offline Offline
3,878 posts
since Nov 2007
Apr 8th, 2008
0

Re: want to pass php variable to javascript

thank u.it's working.....
Reputation Points: 3
Solved Threads: 2
Junior Poster
kings is offline Offline
107 posts
since Nov 2007
Apr 8th, 2008
0

Re: want to pass php variable to javascript

You are welcome!
Moderator
Featured Poster
Reputation Points: 524
Solved Threads: 356
Purple hazed!
nav33n is offline Offline
3,878 posts
since Nov 2007
Aug 7th, 2010
0
Re: want to pass php variable to javascript
How would you do this without a button?

Thanks.

Bill
Reputation Points: 10
Solved Threads: 0
Newbie Poster
bwls is offline Offline
6 posts
since Sep 2008

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: Protecting Pages
Next Thread in PHP Forum Timeline: Checking if file is .pdf





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC