[PHP] Re: Code and Good Design Methods

2003-07-12 Thread zbranigan
Dan == Dan J Rychlik [EMAIL PROTECTED] writes: Dan I am reading PHP and MySQL web development 2nd edition book. Dan Chapter 6 talks about displaying dynamic web content using Dan class objects. For the type of project that I am building, Dan this is not optimal. How do I keep

[PHP] Re: Code and Good Design Methods

2003-07-12 Thread zbranigan
Dan == Dan J Rychlik [EMAIL PROTECTED] writes: Dan I am reading PHP and MySQL web development 2nd edition book. Dan Chapter 6 talks about displaying dynamic web content using Dan class objects. For the type of project that I am building, Dan this is not optimal. How do I keep

[PHP] Re: Credit card/Debit card validation

2003-07-09 Thread zbranigan
Sparky == Sparky Kopetzky [EMAIL PROTECTED] writes: Sparky Does anyone know of a PHP routine to validate Credit/Debit Sparky cards? I've seen some convoluted Javascript scripts but Sparky want a PHP version so validation can be done done Sparky server-side. Robin E. Kopetzky

[PHP] Re: Getting at $_POST values using a loop

2003-06-23 Thread zbranigan
Dave == Dave Alger [EMAIL PROTECTED] writes: Dave Hi all, This one is causing me a few headaches. How should I Dave be doing this? Dave On my previous page I've created a series of fields using a Dave loop so that a field is created like this: Dave echo hr$fieldname:input

[PHP] Re: Source/version control?

2003-06-23 Thread zbranigan
J == J J [EMAIL PROTECTED] writes: J What tools do you recommend or use for a team environment that J will allow us to maintain source control and even offer some J version tracking/history in case we need to go back to old J code? All of the responses I saw recommended the same

[PHP] Re: $_POST array

2003-06-02 Thread zbranigan
Steven == Steven Farrier [EMAIL PROTECTED] writes: Steven I have tried using $_POST array variables in the following Steven ways $message = ($_POST['first_name']) Steven ($_POST['last_name'])\n($_POST['address'])\n($_POST['city']) Steven ($_POST['state']) Steven