Re: PHP, MYSQL and persistant authentication

2003-06-16 Thread Kamara Eric R-M
Hi , u can try this one out http://www.zend.com/zend/tut/tutorial-delin4.php Regards Eric === Kamara Eric Rukidi Mpuuga Computer Frontiers International Plot 32 Lumumba Avenue P.O Box 12510,Kampala Tel :256-41-340417/71 Mob :256-71-190856 Email:[EMAIL PROTECTED] Web

RE: PHP, MYSQL and persistant authentication

2003-06-15 Thread Ow Mun Heng
You need to create a cookie session using start_session() and something like that. I'm actually reading up on it on this book PHP & MySQL Web development - luke welling & Laura thomson (i think) Cheers, Mun Heng, Ow H/M Engineering Western Digital M'sia DID : 03-7870 5168 -Origin

RE: PHP, MYSQL and persistant authentication

2003-06-14 Thread Daevid Vincent
Use sessions in PHP (super simple, just call session_start() at the top of every page i.e. like in an include file) and use $_SESSION['loginname'] I would strongly recommend using mod_auth_mysql for your authentication. It's easy and probably more secure than anything you can write ;-) Plus it let