Re: [PHP] setting Check box

2001-03-26 Thread elists
Try setting up your code so that the following is the result: or Andrew Elliston On Monday, March 26, 2001, at 11:54 PM, Peter Houchin wrote: >>> Hiya can some one pls let me know if i am on the right track pls, this >>> is in a form that updates if there is an id else it inserts, now >>>

[PHP] sessions broken when redirected?

2001-03-29 Thread elists
I've searched the archives and relevant web sites to no avail, so as a last resort I'm turning to this knowledgeable group of people. I'm working to set up a user authentication system using native PHP 4 sessions on a box running Apache, mod_perl, mod_ssl, PHP (the lastest), etc. PHP was comp

[PHP] More info on BCC? (was Re: [PHP] Sending Broadcast Email - will a large loop cause a crash?)

2001-09-06 Thread elists
What's the reasoning behind that number? (330-) I'm about to implement something similar, using BCC (since the emails don't need to be personalized). I've searched in the past for the answers to 2 questions, but haven't had any luck. Can you shed any light on the issue? 1. Is there a limit on

Re: [PHP] looping through database results

2001-09-30 Thread elists
On Sunday, September 30, 2001, at 02:45 PM, Karl Nelson wrote: > while ($event_row = mysql_fetch_array($events)) >{ >$event_day = $event_row["event_day"]; >if ($event_day == $day) > { > $event_name = $event_row["event_name"]; > print "$event_name\n"; > } >} > S