RE: [PHP] can I retrieve jsp varibable with get or post???

2002-11-18 Thread Ford, Mike [LSS]
-Original Message- From: Jeff Bluemel [mailto:[EMAIL PROTECTED]] Sent: 17 November 2002 17:50 ok - the more I look at this the more I'm a bit lost. passing the variables from php to java makes sense. however, from your scripts you listed it is only possible to pass jsp

Re: [PHP] can I retrieve jsp varibable with get or post???

2002-11-17 Thread Jeff Bluemel
ok - the more I look at this the more I'm a bit lost. passing the variables from php to java makes sense. however, from your scripts you listed it is only possible to pass jsp variables to php by opening a new page, or by activating a form. is there a way to pass jsp variables to php while a

Re: [PHP] can I retrieve jsp varibable with get or post???

2002-11-16 Thread Jeff Bluemel
thanks - yes I do understand the code you placed. OK - can I take the JSP variable with a post or a get? are these just general http variables? Jeff Marek Kilimajer [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... php = javascript 1st way: script var var_name=

[PHP] can I retrieve jsp varibable with get or post???

2002-11-15 Thread Jeff Bluemel
Can I utilize java script variables with get or post? any information on integrating the 2, and passing info back forth? thanks, Jeff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] can I retrieve jsp varibable with get or post???

2002-11-15 Thread Marek Kilimajer
php = javascript 1st way: script var var_name= ?= $var_value ? /script 2nd way: input type=hidden name=input_name value=?= $input_value ? javascript = php 1st way: location='http://server/script.php?var_name=; + js_var_name; 2nd way: form_name.input_name.value = js_var_name; hope you get the