Search found 2 matches
- Sun Nov 15, 2009 9:30 pm
- Forum: PHP - Theory and Design
- Topic: detaching the response
- Replies: 8
- Views: 1867
Re: detaching the response
ok I think I've figured a solution. Split the processy bit and the validation in to 2 php files. The first is validation files calls the second and then cuts the connection after 1 flush. The second file uses the abort setting then flushs ok back to the first page. To the user they see the first pag...
- Sat Nov 14, 2009 12:34 am
- Forum: PHP - Theory and Design
- Topic: detaching the response
- Replies: 8
- Views: 1867
detaching the response
is there any way in php to send back the response and finish the request response cycle but after that run more php code. The idea is I have the user input something and it is validated and then some heavy processing is done before a value is put into the database. What I want to do is after the val...