RE: [PHP] Error on session_start()

2001-10-22 Thread Dave Watkinson
You've probably got an echo $something_or_other line before calling the header() function. If not, have you included or required a file? If there's a blank line (or more than one blank line) at the bottom of your included or required file that is considered output to the browser. Header() MUST

RE: [PHP] remembering variables between pages when using forms ...

2001-10-18 Thread Dave Watkinson
than that (which is probably due to the edited code) i'm afraid i'm stumped! sorry mate :-( dave -Original Message- From: Kenn Murrah [mailto:[EMAIL PROTECTED]] Sent: 18 October 2001 17:19 To: Dave Watkinson; [EMAIL PROTECTED] Subject: Re: [PHP] remembering variables between pa

RE: [PHP] remembering variables between pages when using forms ...

2001-10-18 Thread Dave Watkinson
where's your code ken? are you being strict with the case of the variable name? is the hidden element within the forms tags??? -Original Message- From: baker downloads [mailto:[EMAIL PROTECTED]] Sent: 18 October 2001 17:13 To: [EMAIL PROTECTED] Subject: [PHP] remembering variables be

RE: [PHP] MySQL query

2001-10-18 Thread Dave Watkinson
select table1.* from table1 LEFT JOIN table2 ON table1.id=table2.id where table2.id is NULL; http://www.mysql.com/doc/J/O/JOIN.html -Original Message- From: Srinivasan Ramakrishnan [mailto:[EMAIL PROTECTED]] Sent: 18 October 2001 17:06 To: [EMAIL PROTECTED] Subjec

RE: [PHP] Another [PHP] Simple Session Problem...

2001-10-18 Thread Dave Watkinson
not true mine's set to session.save_path = c:\temp and it works just fine but you're right in that the directory has to exist Dave -Original Message- From: Rudolf Visagie [mailto:[EMAIL PROTECTED]] Sent: 18 October 2001 13:00 To: Brian Aitken Cc: [EMAIL PROTECTED] Subject: RE: [PH

RE: [PHP] Another [PHP] Simple Session Problem...

2001-10-18 Thread Dave Watkinson
does E:\Inetpub\sessions exist as a directory? I notice your webdir is on D:\ and I wouldn't put your session files in your web root (if you are) - use c:\temp or c:\winnt\temp or something hope this helps dave -Original Message- From: Brian Aitken [mailto:[EMAIL PROTECTED]] Sent:

RE: [PHP] bulk e-mails

2001-10-02 Thread Dave Watkinson
I use a database (MySQL). I retrieve the list of people to send to and then send one email at a time while looping through the results. Usually it's a couple of hundred at a time, not sure how many you mean by "many many"!!! Hope this helped! Dave -Original Message- From: Tyler Longren