RE: [PHP] Why does this happen?

2003-02-10 Thread Ford, Mike [LSS]
-Original Message- From: Ernest E Vogelsinger [mailto:[EMAIL PROTECTED]] Sent: 09 February 2003 14:39 [OP snipped] I don't know much about CF, but in plain HTML as you show here you have 3 different form input (select) fields sharing the same name. Thus the browser will transmit

RE: [PHP] Why does this happen?

2003-02-10 Thread Ford, Mike [LSS]
-Original Message- From: CF High [mailto:[EMAIL PROTECTED]] Sent: 09 February 2003 20:52 Here's the deal: Let's say I have a form that requests the season schedule of a baseball team, and the team in question has twenty scheduled games all on different days. Each form row

Re: [PHP] Why does this happen?

2003-02-10 Thread Noah
suggested by OP (I need practice working with arrays in PHP anyway). Thanks for the informative reply, --Noah - Original Message - From: Ford, Mike [LSS] [EMAIL PROTECTED] To: 'CF High' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, February 10, 2003 5:28 AM Subject: RE: [PHP] Why does

Re: [PHP] Why does this happen?

2003-02-09 Thread Ernest E Vogelsinger
At 04:52 09.02.2003, CF High said: [snip] In this test form when I submit and insert into my db, only the last select field get entered; i.e. in this case the day value of 25. form name=form1 method=post action= Year select name=date onSelect=return

Re: [PHP] Why does this happen?

2003-02-09 Thread CF High
Alright, alright, everyone, I could get away with this in Cold Fusion, but not in PHP. The simple example I gave is part of a more complex problem, however. Here's the deal: Let's say I have a form that requests the season schedule of a baseball team, and the team in question has twenty

Re: [PHP] Why does this happen?

2003-02-09 Thread Noah
Subject: Re: [PHP] Why does this happen? At 04:52 09.02.2003, CF High said: [snip] In this test form when I submit and insert into my db, only the last select field get entered; i.e. in this case the day value of 25. form name=form1 method=post action

[PHP] Why does this happen?

2003-02-08 Thread CF High
Hey all. Got a problem with I'm sure a simple solution:: In this test form when I submit and insert into my db, only the last select field get entered; i.e. in this case the day value of 25. form name=form1 method=post action= Year select name=date onSelect=return check_submit() option

RE: [PHP] Why does this happen?

2003-02-08 Thread Victor
Maybe you should rename them differently/ or make then into an array? -Original Message- From: CF High [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 10:52 PM To: [EMAIL PROTECTED] Subject: [PHP] Why does this happen? Hey all. Got a problem with I'm sure a simple solution

RE: [PHP] Why does this happen?

2003-02-08 Thread John W. Holmes
Got a problem with I'm sure a simple solution:: In this test form when I submit and insert into my db, only the last select field get entered; i.e. in this case the day value of 25. form name=form1 method=post action= Year select name=date onSelect=return check_submit() option

Re: [PHP] Why does this happen?

2003-02-08 Thread Jason k Larson
Because all of your field names are overwriting each other until the last one wins. name=date This needs to be different for each field so PHP can assign that name as the variable. HTH, Jason k Larson CF High wrote: Hey all. Got a problem with I'm sure a simple solution:: In this test

[PHP] why does this happen?

2002-11-05 Thread Karl James
Hey guys Im trying to print all the names in this table and To do alternating colors, with check boxes on the last Column When I tried this.my site will not display any names What so ever. And I tried some example code for the alternating colors But its not working the way it should The

RE: [PHP] why does this happen?

2002-11-05 Thread Jay Blanchard
Change your body text=#FF to body text=#00 The text is set to white. -Original Message- From: Karl James [mailto:karl.james;verizon.net] Sent: Tuesday, November 05, 2002 4:15 AM To: [EMAIL PROTECTED] Subject: [PHP] why does this happen? Hey guys Im trying to print all the names

RE: [PHP] why does this happen?

2002-11-05 Thread Jay Blanchard
[snip] I did the changes but. Now nonthing appears at all on the web page Please refresh to see what im saying.. [/snip] Now, if that was all you changed you should not have a problem, but you must have changed more than that because now there is nothing in the page. Can you show us your code?

RE: [PHP] why does this happen?

2002-11-05 Thread Jay Blanchard
11:32 AM To: 'Karl James'; 'PHP General' Subject: RE: [PHP] why does this happen? [snip] I did the changes but. Now nonthing appears at all on the web page Please refresh to see what im saying.. [/snip] Now, if that was all you changed you should not have a problem, but you must have changed more

RE: [PHP] why does this happen?

2002-11-05 Thread Jay Blanchard
, November 05, 2002 4:43 AM To: 'Jay Blanchard' Subject: RE: [PHP] why does this happen? I changed all font codes to #33 And nothing happend -Original Message- From: Jay Blanchard [mailto:jay.blanchard;niicommunications.com] Sent: Tuesday, November 05, 2002 11:39 AM To: 'Karl James

RE: [PHP] why does this happen?

2002-11-05 Thread Jay Blanchard
: [PHP] why does this happen? And all you changed was the body text=#FF tag? If so, the code you sent was before you chnaged it to body text=#00 (those are zeros) -Original Message- From: Karl James [mailto:karl.james;verizon.net] Sent: Tuesday, November 05, 2002 4:35 AM To: 'Jay

[PHP] why does this happen

2001-05-09 Thread Adrian D'Costa
Hi, I am trying to write a php and javascript that will pick up data from a table and display and scroll it. I seem to have run out of ideas how to make the script work. I don't get any display on the screen. I use rand() limit 1 so only one row is selected. Can some one tell me where I went