[PHP-DB] Re: Mail problem

2002-08-11 Thread JJ Harrison\\
maybe use a for loop and mail command. should work Or put all the addresses in a CC/BCC field maybe sending every 100 emails to prevent a mail overload/blockage due to to many recipients etc. Hint: look here: http://www.php.net/manual/en/language.variables.php and you can find a way to

Re: [PHP-DB] best way to stare true, false

2002-08-11 Thread Andy
oh... no I ment it in a different way.. somehow.. declare 1 enum value and then set it or not. Search for NULL or not NULL values instead of false /true. in this direction, but .. hey does nobody do this like that?? Andy --

Re: [PHP-DB] best way to stare true, false

2002-08-11 Thread Jim Hunter
The smallest amount of database storage is going to be with a TinyInt and if you set up two constants to represent TRUE and FALSE then all your code will read correctly and will store correctly. EG: define(TRUE, 1); define(FALSE, 0); now you can use TRUE and FALSE in your program where you

Re: [PHP-DB] Need Advice on Installing PHP MySQL on Mac OSX

2002-08-11 Thread Adam Royle
You need to uncomment two lines in the httpd.conf file then restart apache there are many places on the internet where it shows which lines (you could do it yaself, it has php4 in the lines) also, make sure apache is turned on, you can do this inside system preferences apple has some good

[PHP-DB] Random

2002-08-11 Thread zhamrock
can someone help me to generate a random records from the database? eg, rec 1 john doe rec 2 jay williams rec 3 anie boo random results: rec 2 jay williams rec 1 john doe rec 3 anie boo . TIA' zham -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP-DB] Re: Random

2002-08-11 Thread David Robley
In article 003601c241ad$225775e0$[EMAIL PROTECTED], [EMAIL PROTECTED] says... can someone help me to generate a random records from the database? eg, rec 1 john doe rec 2 jay williams rec 3 anie boo random results: rec 2 jay williams rec 1 john doe rec 3 anie boo . Check

RE: [PHP-DB] Re: Random

2002-08-11 Thread Russ
ORDER BY RAND() Russ -Original Message- From: David Robley [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 1:08 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Re: Random In article 003601c241ad$225775e0$[EMAIL PROTECTED], [EMAIL PROTECTED] says... can someone help me to