[PHP] Re: Form handling

2009-06-10 Thread Manuel Lemos
Hello, on 06/10/2009 03:10 PM Eddie Drapkin said the following: > I've been charged with writing a class that handles forms, once they've been > POSTed to. The idea of the class is to handle the most common use-cases of > POST forms, and any special functionality can be handled with a child class

[PHP] Re: Any conflict with $_POST when 2 users concurrently submitting the same form using POST method?

2009-06-10 Thread Keith
Thanks! Peter. I’m very clear now. "Peter Ford" wrote in message news:bd.38.16665.07c6f...@pb1.pair.com... Keith wrote: Let's say user A and user B submitting purchase order form with "order.php" at the same time, with method=post action='confirmation.php'. (1) Will $_POST['order'] submitt

[PHP] Re: Form handling

2009-06-10 Thread Michael
Have a look at Zend Form -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Andrew Ballard
On Wed, Jun 10, 2009 at 3:10 PM, Nitsan Bin-Nun wrote: > Usually I would support you on this one. In chemistry you always keep > your stock "pure" and make any observations or mixtures in clean and > other glasses in order to keep it pure. > > When it comes to printing an output or hosting it in a

Re: [PHP] detect cli sapi

2009-06-10 Thread Eddie Drapkin
if(PHP_SAPI == 'cli') { } or if(php_sapi_name() == 'cli') { } On Wed, Jun 10, 2009 at 3:42 PM, Tom Worster wrote: > what's a reliable way to detect that the sapi is cli, including in a > included scripts? > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http

[PHP] detect cli sapi

2009-06-10 Thread Tom Worster
what's a reliable way to detect that the sapi is cli, including in a included scripts? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Nitsan Bin-Nun
Usually I would support you on this one. In chemistry you always keep your stock "pure" and make any observations or mixtures in clean and other glasses in order to keep it pure. When it comes to printing an output or hosting it in a variables and then printing it out it is just a matter of taste.

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Shawn McKenzie
Ashley Sheridan wrote: > On Wed, 2009-06-10 at 14:40 -0400, Andrew Ballard wrote: >> On Wed, Jun 10, 2009 at 2:26 PM, Ashley >> Sheridan wrote: >>> On Wed, 2009-06-10 at 14:14 -0400, Eddie Drapkin wrote: On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan wrote: > On Wed, 2009-06-10

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Andrew Ballard
On Wed, Jun 10, 2009 at 2:56 PM, Ashley Sheridan wrote: > On Wed, 2009-06-10 at 14:40 -0400, Andrew Ballard wrote: >> On Wed, Jun 10, 2009 at 2:26 PM, Ashley >> Sheridan wrote: >> > On Wed, 2009-06-10 at 14:14 -0400, Eddie Drapkin wrote: >> >> On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan >> >>

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 14:40 -0400, Andrew Ballard wrote: > On Wed, Jun 10, 2009 at 2:26 PM, Ashley > Sheridan wrote: > > On Wed, 2009-06-10 at 14:14 -0400, Eddie Drapkin wrote: > >> On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan > >> wrote: > >> > >> > On Wed, 2009-06-10 at 19:03 +0100, Ashley Sh

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Andrew Ballard
On Wed, Jun 10, 2009 at 2:26 PM, Ashley Sheridan wrote: > On Wed, 2009-06-10 at 14:14 -0400, Eddie Drapkin wrote: >> On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan >> wrote: >> >> > On Wed, 2009-06-10 at 19:03 +0100, Ashley Sheridan wrote: >> > > On Wed, 2009-06-10 at 23:17 +0530, Sudheer Satyana

RE: [PHP] Mail function and hotmail

2009-06-10 Thread Fernando G
Thank you. I'm looking at PEAR Mail_mime right now. It seems promising. Fernando. > Date: Wed, 10 Jun 2009 23:14:11 +0530 > From: sudhee...@binaryvibes.co.in > To: phps...@gmail.com > CC: jfer...@hotmail.com; rich...@php.net; php-general@lists.php.net > Subject: Re: [PHP] Mail function and hot

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 14:14 -0400, Eddie Drapkin wrote: > On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan > wrote: > > > On Wed, 2009-06-10 at 19:03 +0100, Ashley Sheridan wrote: > > > On Wed, 2009-06-10 at 23:17 +0530, Sudheer Satyanarayana wrote: > > > > Ashley Sheridan wrote: > > > > > On Wed,

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Eddie Drapkin
On Wed, Jun 10, 2009 at 2:08 PM, Ashley Sheridan wrote: > On Wed, 2009-06-10 at 19:03 +0100, Ashley Sheridan wrote: > > On Wed, 2009-06-10 at 23:17 +0530, Sudheer Satyanarayana wrote: > > > Ashley Sheridan wrote: > > > > On Wed, 2009-06-10 at 23:05 +0530, Sudheer Satyanarayana wrote: > > > > > > >

[PHP] Form handling

2009-06-10 Thread Eddie Drapkin
I've been charged with writing a class that handles forms, once they've been POSTed to. The idea of the class is to handle the most common use-cases of POST forms, and any special functionality can be handled with a child class at a later date, but for our uses, we're going to have mostly pretty t

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 19:59 +0200, Nitsan Bin-Nun wrote: > That would do the job. > > If you are already digging into it, take a look at XSRF/CSRF which are > both can be very harmful, especially for ecommerce websites. > > On Wed, Jun 10, 2009 at 8:08 PM, Ashley > Sheridan wrote: > > On Wed, 200

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Nitsan Bin-Nun
That would do the job. If you are already digging into it, take a look at XSRF/CSRF which are both can be very harmful, especially for ecommerce websites. On Wed, Jun 10, 2009 at 8:08 PM, Ashley Sheridan wrote: > On Wed, 2009-06-10 at 19:03 +0100, Ashley Sheridan wrote: >> On Wed, 2009-06-10 at 2

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 19:03 +0100, Ashley Sheridan wrote: > On Wed, 2009-06-10 at 23:17 +0530, Sudheer Satyanarayana wrote: > > Ashley Sheridan wrote: > > > On Wed, 2009-06-10 at 23:05 +0530, Sudheer Satyanarayana wrote: > > > > > >>> I've been doing a bit of reading, and I can't really understa

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 23:17 +0530, Sudheer Satyanarayana wrote: > Ashley Sheridan wrote: > > On Wed, 2009-06-10 at 23:05 +0530, Sudheer Satyanarayana wrote: > > > >>> I've been doing a bit of reading, and I can't really understand why XSS > >>> is such an issue. Sure, if a user can insert a

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Sudheer Satyanarayana
Ashley Sheridan wrote: On Wed, 2009-06-10 at 23:05 +0530, Sudheer Satyanarayana wrote: I've been doing a bit of reading, and I can't really understand why XSS is such an issue. Sure, if a user can insert a

Re: [PHP] Mail function and hotmail

2009-06-10 Thread Sudheer Satyanarayana
Richard was likely suggestion his mail example as listed in his signature Other options include phpmailer pear's mime mail various other classes available www.phpclasses.org Fernando, I recommend you check out the various PHP frameworks out there. Instead of randomly searching for clas

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 23:05 +0530, Sudheer Satyanarayana wrote: > > I've been doing a bit of reading, and I can't really understand why XSS > > is such an issue. Sure, if a user can insert a

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Lenin
I reckon Dan brown is fond of pillow talks instead of PHP(pillow has p*nux) in here very much ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Sudheer Satyanarayana
I've been doing a bit of reading, and I can't really understand why XSS is such an issue. Sure, if a user can insert a

RE: [PHP] Mail function and hotmail

2009-06-10 Thread Fernando G
Thanks. I'll check that out. > Date: Wed, 10 Jun 2009 18:24:45 +0100 > Subject: Re: [PHP] Mail function and hotmail > From: rich...@php.net > To: phps...@gmail.com > CC: jfer...@hotmail.com; php-general@lists.php.net > > Hi, > > > pear's mime mail > > I believe I had a hand in that too. It's

Re: [PHP] Mail function and hotmail

2009-06-10 Thread Richard Heyes
Hi, > pear's mime mail I believe I had a hand in that too. It's like a bad rash - it gets everywhere... :-) -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 6th June) PHP mail: RMail (www.phpguru.org/rmail) PHP datagrid: RGrid (www.phpguru.org/rgrid) PHP Template: RTemplate (ww

Re: [PHP] Mail function and hotmail

2009-06-10 Thread Bastien Koert
On Wed, Jun 10, 2009 at 1:11 PM, Fernando G wrote: > > I have not idea of what else to use.  Your suggestions are appreciated. > > Fernando. > >> Date: Wed, 10 Jun 2009 18:04:31 +0100 >> From: rich...@php.net >> To: jfer...@hotmail.com >> CC: php-general@lists.php.net >> Subject: Re: [PHP] Mail fun

Re: [PHP] Re: Background Process

2009-06-10 Thread Simon
kranthi, you are wrong here. popen() will open a pipe to a process. You must have meant fopen() which doesnt work with pipes, but with files. you first popen php (ie execute it) you then write the code you want php to exec (php is still executing, reading your input) at the end you pclose php and

RE: [PHP] Mail function and hotmail

2009-06-10 Thread Fernando G
I have not idea of what else to use. Your suggestions are appreciated. Fernando. > Date: Wed, 10 Jun 2009 18:04:31 +0100 > From: rich...@php.net > To: jfer...@hotmail.com > CC: php-general@lists.php.net > Subject: Re: [PHP] Mail function and hotmail > > Hi, > > > ... > > Use something that i

Re: [PHP] Mail function and hotmail

2009-06-10 Thread Richard Heyes
Hi, > ... Use something that is already proven to work. It will save you an awful lot of time. -- Richard Heyes HTML5 graphing: RGraph (www.rgraph.net - updated 6th June) PHP mail: RMail (www.phpguru.org/rmail) PHP datagrid: RGrid (www.phpguru.org/rgrid) PHP Template: RTemplate (www.phpguru.org

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Shawn McKenzie
Ashley Sheridan wrote: > On Wed, 2009-06-10 at 18:28 +0200, Nitsan Bin-Nun wrote: >> mysql_real_escape_string() only sanitise the input. I would personally >> only allow [a-zA-Z0-9-_] in search string but that's just me ;) >> Validate the input in some way, or make extra sanitisation of it >> befor

Re: [PHP] Mail function and hotmail

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 12:59 -0400, Fernando G wrote: > Hello, > > I am sending an html message with and embedded image using the following code: > > // Read message from html template > $message = fread("template.html", filesize("template.html")); > > // I replace the values in $message that are

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 12:55 -0400, Eddie Drapkin wrote: > The problem with using a database escaping string for output escaping > is that something like (despite being the world's lamest XSS) > > location.href('google.com') > > Would output mostly the same and with some cleverness, it wouldn't be

[PHP] Mail function and hotmail

2009-06-10 Thread Fernando G
Hello, I am sending an html message with and embedded image using the following code: // Read message from html template $message = fread("template.html", filesize("template.html")); // I replace the values in $message that are necessary to // fill the tempalte ... // Generate a boundary stri

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Eddie Drapkin
The problem with using a database escaping string for output escaping is that something like (despite being the world's lamest XSS) location.href('google.com') Would output mostly the same and with some cleverness, it wouldn't be too hard to get that to function properly with a full fledged XSS a

Re: [PHP] URL injection

2009-06-10 Thread Simon
> https://www.xxx.co.uk/register.php";| grep "123" I wonder what kind of browser could make this, probably a hacker-made one! This URL will have to be translated into its equivalent URI, if using GET the HTTP message's start line would look like: GET /register.php"| grep "123" HTTP/1.1 First of

Re: [PHP] C++, $_POST -> php-cgi

2009-06-10 Thread Simon
I'm working on something similar, here's the pseudo-code of what happens to ensure the PHP script run by my server doesnt see any difference than when it runs under apache or others... Say the php file to execute is "index.php" and it was called from a form post, the form tag also specified GET ar

Re: [PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 18:28 +0200, Nitsan Bin-Nun wrote: > mysql_real_escape_string() only sanitise the input. I would personally > only allow [a-zA-Z0-9-_] in search string but that's just me ;) > Validate the input in some way, or make extra sanitisation of it > before running the search query. >

Re: [PHP] Php and Imagemagick problems

2009-06-10 Thread Simon
What exactly is the problem or error message you get? Also if this is your script, really, it needs a LOT of cleanup!! Here's an example that could point out the problem: > $FileName = > str_replace(".jpg", "", $FileName); > > $FileName = > str_replace("/", "", $ImageName); > $Fil

[PHP] Preventing XSS Attacks

2009-06-10 Thread Ashley Sheridan
Hi all, I'm looking at adding a new search feature to my site, and one of the elements of this is to echo back in the search results page, the original string the user searched for. Up until now, XSS hasn't (afaik) been an issue for my site, but I can see from a mile off this will be. What would y

Re: [PHP] Show the entire browser request

2009-06-10 Thread Robin Vickery
2009/6/10 Robin Vickery > > > 2009/6/10 Dotan Cohen > >> > Just checked your site in Elinks (works like Lynx) and I'm getting the >> > headers come back to me. I'm assuming you changed your site code before >> > me sending this and after you sent the original message? >> > >> >> The individual h

Re: [PHP] Show the entire browser request

2009-06-10 Thread Robin Vickery
2009/6/10 Dotan Cohen > > Just checked your site in Elinks (works like Lynx) and I'm getting the > > headers come back to me. I'm assuming you changed your site code before > > me sending this and after you sent the original message? > > > > The individual headers are as they always were. It's th

Re: [PHP] [php] read/write error

2009-06-10 Thread Robin Vickery
2009/6/8 HELP! > opening of the sorket is ok and writting LOGIN packet to the sorket is also > ok but reading the response to know if the login is accepted or rejected is > a not OK. Don't use fread() to read from sockets, use stream_get_contents(). Example 3 on the fread() manual page tells yo

Re: [PHP] php applications

2009-06-10 Thread Paul M Foster
On Wed, Jun 10, 2009 at 08:37:23AM -0400, tedd wrote: > > Think about it -- why are all languages are looking more and more > alike? Why is it that you can jump from versions of BASIC to C, C++, > php, JAVA, javascript and others and not find yourself in a > completely foreign environment? You t

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Robert Cummings
Daniel Brown wrote: On Wed, Jun 10, 2009 at 09:14, Robert Cummings wrote: He was quite active... when I raised a really good point all he could do was scream. and it is at this point that I would like to remind you that we are on the air, gentlemen, live and being recorded for future

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Bastien Koert
On Wed, Jun 10, 2009 at 9:13 AM, Robert Cummings wrote: > Daniel Brown wrote: >> >> On Wed, Jun 10, 2009 at 09:06, Robert Cummings >> wrote: >>> >>> Dan, I'd appreciate it if you wouldn't share our pillow talk with the >>> list >>> at large. >> >>    Oh, stop, it's not like I mentioned the rash for

Re: [PHP] php applications

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 09:16, tedd wrote: > > That's Okay, I just say it better than you.  :-) Show-off. -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ 50% Off All Shared Hosting Plans at PilotPig: Use Coupon DOW1 -- PHP General M

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 09:14, Robert Cummings wrote: > > He was quite active... when I raised a really good point all he could do was > scream. and it is at this point that I would like to remind you that we are on the air, gentlemen, live and being recorded for future generations to sea

Re: [PHP] php applications

2009-06-10 Thread tedd
At 9:07 AM -0400 6/10/09, Robert Cummings wrote: Daniel Brown wrote: On Wed, Jun 10, 2009 at 08:59, Robert Cummings wrote: Don't you have VB applications to write? And this after I just mentioned your name in another thread without throwing up in my mouth. You've finally got those gag r

Re: [PHP] php applications

2009-06-10 Thread tedd
At 8:53 AM -0400 6/10/09, Daniel Brown wrote: On Wed, Jun 10, 2009 at 08:37, tedd wrote: Beside, this is how languages evolve. There is no job that any tool is designed for. The "job" is our current perception of the task at hand and that is always changing. That's the point I was tryi

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Robert Cummings
Eddie Drapkin wrote: The question then becomes whether he was one of the boring catchers and just sort of "sat there" or was "actively discussing" with you. He was quite active... when I raised a really good point all he could do was scream. Cheers, Rob. -- http://www.interjinn.com Applicati

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Eddie Drapkin
The question then becomes whether he was one of the boring catchers and just sort of "sat there" or was "actively discussing" with you. On Wed, Jun 10, 2009 at 9:11 AM, Robert Cummings wrote: > Eddie Drapkin wrote: > >> Dan, I do appreciate when you share your pillow talk with the list at >> larg

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Robert Cummings
Daniel Brown wrote: On Wed, Jun 10, 2009 at 09:06, Robert Cummings wrote: Dan, I'd appreciate it if you wouldn't share our pillow talk with the list at large. Oh, stop, it's not like I mentioned the rash for which you've been getting that cream. I just realized... today isn't Friday ;)

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 09:11, Daniel Brown wrote: > On Wed, Jun 10, 2009 at 09:06, Robert Cummings wrote: >> >> Dan, I'd appreciate it if you wouldn't share our pillow talk with the list >> at large. > >    Oh, stop, it's not like I mentioned the rash for which you've been > getting that cream.

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 09:06, Robert Cummings wrote: > > Dan, I'd appreciate it if you wouldn't share our pillow talk with the list > at large. Oh, stop, it's not like I mentioned the rash for which you've been getting that cream. -- daniel.br...@parasane.net || danbr...@php.net http://www

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Robert Cummings
Eddie Drapkin wrote: Dan, I do appreciate when you share your pillow talk with the list at large. Just so everyone knows... Dan was catcher when we were having that long "deep" talk. Cheers, Rob. -- http://www.interjinn.com Application and Templating Framework for PHP -- PHP General Mailing

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Eddie Drapkin
Dan, I do appreciate when you share your pillow talk with the list at large. Cheers, Eddie On Wed, Jun 10, 2009 at 9:06 AM, Robert Cummings wrote: > Daniel Brown wrote: > >> On Wed, Jun 10, 2009 at 01:41, R. S. Patil wrote: >> >>> Hi, >>> >>> We are in phase of evaluating PHP as Serverside techn

Re: [PHP] php applications

2009-06-10 Thread Robert Cummings
Daniel Brown wrote: On Wed, Jun 10, 2009 at 08:59, Robert Cummings wrote: Don't you have VB applications to write? And this after I just mentioned your name in another thread without throwing up in my mouth. You've finally got those gag reflexes under control... call me!! *wink wink* *n

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Robert Cummings
Daniel Brown wrote: On Wed, Jun 10, 2009 at 01:41, R. S. Patil wrote: Hi, We are in phase of evaluating PHP as Serverside technology for our first web application. We have finalized Flex for user interface and Birt as reporting engine. Now the data services are to be evaluated. Flex forums reco

Re: [PHP] php applications

2009-06-10 Thread Ashley Sheridan
On Wed, 2009-06-10 at 08:53 -0400, Daniel Brown wrote: > On Wed, Jun 10, 2009 at 08:37, tedd wrote: > > > > Beside, this is how languages evolve. There is no job that any tool is > > designed for. The "job" is our current perception of the task at hand and > > that is always changing. > > That

Re: [PHP] php applications

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 08:59, Robert Cummings wrote: > > Don't you have VB applications to write? And this after I just mentioned your name in another thread without throwing up in my mouth. -- daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.ne

Re: [PHP] PHP as Server Side for a Web Database Application.

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 01:41, R. S. Patil wrote: > Hi, > > We are in phase of evaluating PHP as Serverside technology for our first web > application. > We have finalized Flex for user interface and Birt as reporting engine. Now > the data services > are to be evaluated. Flex forums recommended us

Re: [PHP] php applications

2009-06-10 Thread Robert Cummings
Daniel Brown wrote: On Wed, Jun 10, 2009 at 08:37, tedd wrote: Beside, this is how languages evolve. There is no job that any tool is designed for. The "job" is our current perception of the task at hand and that is always changing. That's the point I was trying to get at in the email I wr

Re: [PHP] php applications

2009-06-10 Thread Daniel Brown
On Wed, Jun 10, 2009 at 08:37, tedd wrote: > > Beside, this is how languages evolve. There is no job that any tool is > designed for. The "job" is our current perception of the task at hand and > that is always changing. That's the point I was trying to get at in the email I wrote last night t

Re: [PHP] php applications

2009-06-10 Thread tedd
At 2:28 AM +0100 6/10/09, Michael wrote: The standard PHP execution model is geared almost exclusively towards web-used (though crons etc. are reasonable)... that is, to sit in/with a server and handle requests... to operate over, at maximum, "insane" lifespans of 30 seconds. There are langua

RE: [PHP] php applications

2009-06-10 Thread Arno Kuhl
At 11:49 AM -0400 6/8/09, Daniel Brown wrote: >On Mon, Jun 8, 2009 at 11:48, tedd wrote: >> Hi gang: >> >> I've heard that php can be used for more than web programming, but I >> am not aware of specifically how that can be done. So, let me ask >> directly -- can php be used to create a Mac A

[PHP] Re: Any conflict with $_POST when 2 users concurrently submitting the same form using POST method?

2009-06-10 Thread Peter Ford
Keith wrote: > Let's say user A and user B submitting purchase order form with > "order.php" at the same time, with method=post action='confirmation.php'. > > (1) Will $_POST['order'] submitted by user A replaced by > $_POST['order'] submitted by user B, and the both user A & B getting the > sam