[PHP] Re: Passing values from a new window

2004-11-05 Thread Todd Cary
Is there a place where I can view some examples of using JavaScript? Todd Todd Cary wrote: I have a button that creates a new window. The surfer may enter data in the new window, and if he does, when the window is closed by the surfer, can the information update fields on the original page -

RE: [PHP] Re: Passing values from a new window

2004-11-05 Thread Jay Blanchard
[snip] Is there a place where I can view some examples of using JavaScript? [/snip] A. Type http://www.google.com in your browser's address bar or click on the handy link provided. If push comes to shove, cut and paste the address into your browser's address bar. 2. Carefully and thoughtfully

RE: [PHP] Re: Passing values from a new window

2004-11-05 Thread Vail, Warren
I can recommend http://www.hotscripts.com (the javascript section). Warren Vail -Original Message- From: Todd Cary [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 1:17 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Passing values from a new window Is there a place

RE: [PHP] Re: Passing values from a new window

2004-11-05 Thread Matthew Sims
[snip] Is there a place where I can view some examples of using JavaScript? [/snip] A. Type http://www.google.com in your browser's address bar or click on the handy link provided. If push comes to shove, cut and paste the address into your browser's address bar. 2. Carefully and

Re: [PHP] Re: Passing values from a new window

2004-11-05 Thread Greg Donald
On Fri, 5 Nov 2004 15:30:43 -0600, Jay Blanchard [EMAIL PROTECTED] wrote: Thousands of examples will be yours to behold. 14.8 million from where I sit. I'm tired of all your inaccurate answers Jay. :) -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ --

Re: [PHP] Re: Passing values from a new window

2004-11-05 Thread Greg Donald
On Fri, 5 Nov 2004 13:36:08 -0800, Vail, Warren [EMAIL PROTECTED] wrote: I can recommend http://www.hotscripts.com (the javascript section). I forgot about my handy dandy google search script: ./google.pl javascript 10 Result: http://javascript.internet.com/ http://www.javascript.com/

RE: [PHP] Re: Passing values from a new window

2004-11-05 Thread Vail, Warren
That foot sticking out of his monitor was his choice Warren Vail -Original Message- From: Matthew Sims [mailto:[EMAIL PROTECTED] Sent: Friday, November 05, 2004 2:08 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Passing values from a new window [snip

Re: [PHP] Re: Passing values from a new window

2004-11-05 Thread Greg Donald
On Fri, 05 Nov 2004 13:17:29 -0800, Todd Cary [EMAIL PROTECTED] wrote: Is there a place where I can view some examples of using JavaScript? http://google.com/search?q=javascript -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP General Mailing List

[PHP] Re: passing values of checkboxes in PHP

2004-05-17 Thread John Taylor-Johnston
Gowthaman, Just at a glance, it seems that you Should Only receive One value. input type=\checkbox\ Name=protid value=\$variable\ 'Name=protid' tells me that you have only created one value. Because they ALL have the SAME name=protid there will be only one value. This would be more evident if

[PHP] Re: passing values of checkboxes in PHP- solved

2004-05-17 Thread John Taylor-Johnston
sorry for the trouble .. Nah! :) Gowthaman Ramasamy wrote: I myself solved the problem. sorry for the trouble .. sincerely, gowtham On Mon, 2004-05-17 at 11:51, gowthaman ramasamy wrote: hi list, I have a problem with getting the values of check boxes ... In the form i have many

Re: [PHP] Re: passing values of checkboxes in PHP

2004-05-17 Thread Marek Kilimajer
John Taylor-Johnston wrote: Gowthaman, Just at a glance, it seems that you Should Only receive One value. input type=\checkbox\ Name=protid value=\$variable\ 'Name=protid' tells me that you have only created one value. Because they ALL have the SAME name=protid there will be only one value. This

Re: [PHP] Re: passing values of checkboxes in PHP

2004-05-17 Thread John Taylor-Johnston
input type=\checkbox\ Name=protid1 value=\$variable\ input type=\checkbox\ Name=protid2 value=\$variable\ input type=\checkbox\ Name=protid3 value=\$variable\ input type=\checkbox\ Name=protid4 value=\$variable\ Or give all name=protid[] and you will get array $_POST['protid'] that

Re: [PHP] Re: passing values of checkboxes in PHP

2004-05-17 Thread Marek Kilimajer
John Taylor-Johnston wrote: input type=\checkbox\ Name=protid1 value=\$variable\ input type=\checkbox\ Name=protid2 value=\$variable\ input type=\checkbox\ Name=protid3 value=\$variable\ input type=\checkbox\ Name=protid4 value=\$variable\ Or give all name=protid[] and you will get array

[PHP] Re: passing values from one script to another script

2003-03-16 Thread Alan McFarlane
Have a look at the $_POST super global variable documentation. Chinmoy Barua [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello everybody, I want to pass a value, which came from a HTML form, to another PHP script. How can i do this? e.g.: $login - the value of this varriable

[PHP] Re: Passing Values

2002-04-03 Thread Maxim Maletsky
Yes, that would help... Sebastian A. writes: Hello, Today I was working on an object that will create all of the columns and tables in my DataBase for my upcoming application. I however, did run into trouble. I am having problems because I cannot pass the name of the

[PHP] RE: passing values

2002-03-13 Thread John Gurley
Ray, I am using the post method, and the $_POST is inside FORM/FORM, but the value is still not passed. Although I'm not sure what you mean by You will need to set the value with a post inorder to access it with the predefined variable $_POST Could you explain this please. Thanks again

RE: [PHP] RE: passing values

2002-03-13 Thread Rick Emery
John, Post your code. We're all operating in the dark here and we want to help you. -Original Message- From: John Gurley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 8:07 AM To: [EMAIL PROTECTED] Subject: [PHP] RE: passing values Ray, I am using the post method

[PHP] re: passing values

2002-03-13 Thread John Gurley
Thanks everyone for the help. Finally got it working using this: ?php echo 'input name = inp type = hidden value ='; echo ($_POST '$inp'); echo ''; ? Don't hhave a clue why this worked and the others didn't?!?!? thanks John _

Re: [PHP] re: passing values

2002-03-13 Thread Jason Wong
On Wednesday 13 March 2002 23:37, John Gurley wrote: Thanks everyone for the help. Finally got it working using this: ?php echo 'input name = inp type = hidden value ='; echo ($_POST '$inp'); echo ''; ? Don't hhave a clue why this worked and the others didn't?!?!? This isn't working

[PHP] RE: passing values to a javascript variable

2001-06-22 Thread Tim Ward
have you viewed the source? - could be something to do with the semi-colons or, more likely, what addslashes($data_data) evaluates to. Tim Ward Senior Systems Engineer Please refer to the following disclaimer in respect of this message: