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...
An alternative i have tried Ask your users to zip the files they need to upload Upload the archive and unzip it in the target directory ... Hassan El Forkani ...
Thanks Hassan, Let me alter the question a bit. Is it possible to upload all the files pertaining to a particular folder in my hard drive with a single click. ...
No they can use winzip, and on the server you can use a php class like pclzip.lib.php to unzip the archive, it works fine on both windows and linux ... Hassan...
As mentionned by other posts, to have some sort of multiple select with minimum user intervention you need to use a java applet or some sort of activ x, maybe...