Re: [PHP] Send PHP results in email

2002-12-08 Thread Malcolm Brownell
Thanks Jason, I saw this a while ago and it solved the problem perfectly. On Thu, 5 Dec 2002 06:11:40 +0800, [EMAIL PROTECTED] (Jason Wong) wrote: > On Thursday 05 December 2002 05:58, Malcolm Brownell wrote: > > Hi, > > > > I have some database fields I want to select and email. > > > > I h

Re: [PHP] Send PHP results in email

2002-12-04 Thread Jason Wong
On Thursday 05 December 2002 05:58, Malcolm Brownell wrote: > Hi, > > I have some database fields I want to select and email. > > I have lines like -- > > $result = mysql_query("SELECT * FROM adopt_main order by idform desc limit > 1"); while( $row = mysql_fetch_array ($result)) > echo "".

[PHP] Send PHP results in email

2002-12-04 Thread Malcolm Brownell
Hi, I have some database fields I want to select and email. I have lines like -- $result = mysql_query("SELECT * FROM adopt_main order by idform desc limit 1"); while( $row = mysql_fetch_array ($result)) echo "".$row["first"].","; There are quite a few of these paragraphs in