Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Feb 3, 2004 12:26 pm
1340
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Feb 3, 2004 12:26 pm
1341
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Feb 15, 2004 8:04 pm
1342
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Feb 15, 2004 8:04 pm
1343
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Feb 29, 2004 10:16 pm
1344
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Feb 29, 2004 10:16 pm
1345
HI all, I am very new to PHP programming. I would like to create page which will accept informations from the users and send it to my ID. I have tried it by...
What will you want to do with the user information? If you are looking for a simple front end for your website that can manage content, you might try...
mgobi2003 <gobinathm@...> wrote: HI all, I am very new to PHP programming. I would like to create page which will accept informations from the users...
Are you trying to send the information to your email address? If so, I found a program called phpmailer that will do that for you. It's implemented as a php ...
Hi my PhP database driven website is using a login form as a measure of redirecting users and administrators. The login is working perfectly but the problem is...
Hi, I mean if($username=="admin") { header("location: admin/index.php"); } elseif($username=="user"){ header("location: user/index.php"); } ... Created by...
You might want to share your code, but try this: after your user logs in successfully and before they are currently redirected: header('Location:admin.php';) ...
Thanks Tulga, but this is not working. It gives an error that header already sent. where should i put these codes? Lungo "Tulga.G" <tulga@...> wrote: ...
Do u use any header function before this header function? or session? ... Created by Tulga.G Powered by Netsoft Co.,Ltd Copyright 2003-2004. All rights...
i am using a session in this page. but thanks i can see now i am very close to solve the problem Lungo "Tulga.G" <tulga@...> wrote: Do u use any header...
Lungo, You also need to make sure that no page (html) information is placed in the buffer prior to the header location function. I have found little things ...
Problems with 'Header Information already sent'? Solution...Don't use Location: etc, etc For example, instead of: if($username=="admin") { header("location:...
Actually, that's not what the "Header Information already sent" comes from. It comes from the script already sending output to thet browser before the header...
yea, not even a hard return ... From: plumber To: php-objects@yahoogroups.com Sent: Sunday, March 07, 2004 5:48 AM Subject: Re: [php-objects] Redirecting users...
You're right with your method. But if programmer using debuging like in adodb, the debug message cannot display correctly. fn http://www.rindudendam.com...
Hi Lungo, Does your user table in your database have a "type" field?? That would be the easiest way... E.G: USER TABLE: User_name User_login User_password ...
Vivie
vivster81@...
Mar 8, 2004 7:35 am
1364
... And you can also use headers_sent() to write a function to do either one based on whether the headers have been sent already. function...
Nice, Derek. I didn't know that trick. -j ... http://www.meta-language.net/...
Jeff Bennett
JBennett@...
Mar 8, 2004 6:39 pm
1366
Hi All, I would like to use CORBA via PHP, unfortunately I am not able to find examples significant. I do not find either the documentation necessary to do...
Has any one has any solution to this problem. I want to upload multiple files with a single file input field. Earlier for multiple uploads I had set an arry of...