Re: [PHP] Login page error

2007-06-12 Thread Richard Lynch
On Mon, June 11, 2007 9:28 pm, Humani Power wrote: > Hi! Im trying to make a login page. I have searched for examples that > makes > me check the user name with a database, and the one that suits better > is > this code. > // Perhaps you have a BLANK LINE right here? // Even a BLANK LINE counts a

Re: [PHP] Login page error

2007-06-11 Thread Janet Valade
The error comes from having output before the session_start(). This means that anything before the space. Janet Humani Power wrote: Hi! Im trying to make a login page. I have searched for examples that makes me check the user name with a database, and the one that suits better is this code.

Re: [PHP] Login page error

2007-06-11 Thread Robert Cummings
On Mon, 2007-06-11 at 21:28 -0500, Humani Power wrote: > > [-- SNIIP --] > > I have searched for possible answers, and all I have found is that I > should not send any output before the session_start(); But in this > code the session_start(); output is before anything else. > can yo