RE: [PHP-DB] [SPAM?] [PHP-DB] Appeal For Assitance

2003-07-30 Thread Mark Collin
Ever tried sticking 12.5million dollars of crisp non sequential bills up there ??? You'd need a VERY big a$$ :) -Original Message- From: Angelo Zanetti [mailto:[EMAIL PROTECTED] Sent: 30 July 2003 15:47 To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] [SPAM?] [PHP-DB] Appeal For Assitance

Re: [PHP-DB] Cookies ???

2001-09-18 Thread Mark Collin
instead of setting multiple cookies, why not start using seassions its dead easy with php4 and you can then do all your security stuff with sessions, much easier, much more secure etc - Original Message - From: Rick Emery [EMAIL PROTECTED] To: 'Jason Caldwell' [EMAIL PROTECTED]; [EMAIL

Re: [PHP-DB] blinking background

2001-08-09 Thread Mark Collin
catch the attention of the user hell why don't you just make a blinking page i'm sure that will grab some attention, and possibly cause a ton of epillectic fits around the world when people finally do look at your page e. - Original Message - From: J- E- N [EMAIL PROTECTED] To:

Re: [PHP-DB] Still stuck on Sessions :-(

2001-07-18 Thread Mark Collin
I personally tend to use arrays for my sessions, i just find it easier that way this sort of thing works for me:- html ? session_start(); session_register(SESSION); ? head /head body $SESSION[user]=$whatever; $SESSION[password]=$whatever; echo(Welcome . $SESSION[user] ., Please Click On A Link);

Re: [PHP-DB] session troubles

2001-07-05 Thread Mark Collin
are you setting your session before the head /head tags ?? if not that could be your problem - Original Message - From: Brad Wright [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 4:16 PM Subject: [PHP-DB] session troubles Hi all, Im new to this mailing list

[PHP-DB] Transmitting Arrays

2001-03-20 Thread Mark Collin
I have a form which dynamically builds a table by taking data out of a mysql database http://www.fyrespray.net/screenshots/admin/modifyscreenshot.php4?pageid=1 but i'm having problems whn i try to modify the data i'm trying to put all the data into arrays serialize it, urlencode it then send it