[PHP] mid-level PHP/MySQL people in Los Angeles?

2002-09-17 Thread PHP freak
I'm looking for 1 or 2 people with good PHP/MySQL experience in the Los Angeles area. I have a few steady projects that pay $20/hr. (All of them 100% PHP/MySQL. All of them fun/non-corporate music-based sites.) If interested, please email my personal address: [EMAIL PROTECTED] Include your

Re: [PHP] Better standards in PHP-coding

2002-04-21 Thread PHP freak
Change terrible to readable and I agree completely! A carriage return and tab is the same size as two space-bar spaces, but is MUCH easier to read. It's when you're going through someone ELSE's code that you start to appreciate things being all clearly spaced out with all nested things in

Re: [PHP] sessions not so secure..solution?

2002-03-19 Thread PHP freak
I came to the PHP list today with the same question/problem. My cart doesn't require cookies. If the user doesn't have them it just puts the SESSID in the URL. (Good ol PHP!) BUT - it's actually happening often that someone linking to our store from their own website is including the long

[PHP] two different MySQL connections without always select_db?

2002-03-08 Thread PHP freak
How would you keep two different MySQL connections to two different MySQL databases (on two different MySQL servers) up and available with two different pointers (id), and not need to always do select_db() to switch between them? I thought that if I did this: --- php: -

[PHP] how long will REGISTERED GLOBALS be around?

2001-12-30 Thread PHP freak
About PHP 4.1 What I can't tell from the PHP announcement is how long they plan to keep register_globals around. In ONE place it says something like We have no plans to discontinue register_globals, but in another place it says it might be discontinued or devalued soon. It'd be a REAL drag

Re: [PHP] how long will REGISTERED GLOBALS be around?

2001-12-30 Thread PHP freak
For what it's worth - casting my vote - I would vote that the PHP/Zend people keep REGISTER_GLOBALS as an option for one main reason: NEWBIES! Think of how nice it is for the total newbies to be able to have this first tutorial: ?php print Hello $myname; ? form action=?php print $PHP_SELF; ?