Re: [PHP] Form validation issue

2009-12-20 Thread Midhun Girish
then the page gets reloaded and clears all the javascript error messages and does the PHP validation. That is because the form is getting submitted... make sure you js code prevents form submit if errors are found Midhun Girish On Mon, Dec 21, 2009 at 8:13 AM, Ernie Kemp ernie.k

Re: [PHP] Event Handling

2010-03-15 Thread Midhun Girish
a cronjob which calls the http://www.yoursite.com/check.php; URL every minute now a trigger will be there every minute to the script and the emails will be send irrespective of whether anyone is browsing the site or not hope it is clear... Midhun Girish Development Lead MobAlive Technologies

Re: [PHP] Re: Event Handling

2010-03-15 Thread Midhun Girish
hey ash, do we need both of those checks ? ie the time and the flag? i think they both do the same thing ie prevent duplicates.. am i right? and i think flag would be a more reliable method coz it will ensure that the email will be send even if the cron fails to execute for some time, Midhun

Re: [PHP] Re: Event Handling

2010-03-15 Thread Midhun Girish
will we set a time limit in the script? its variable na.. but the flag is ok.. you can send a mail to all db entries which have flag 0 and then update the flag to 1. Midhun Girish Development Lead MobAlive Technologies On Mon, Mar 15, 2010 at 2:29 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote

Re: [PHP] Event Handling

2010-03-15 Thread Midhun Girish
of that.. Midhun Girish Development Lead MobAlive Technologies On Mon, Mar 15, 2010 at 6:08 PM, Jochem Maas joc...@iamjochem.com wrote: Op 3/15/10 12:00 PM, David Hutto schreef: On Mon, Mar 15, 2010 at 7:31 AM, Jochem Maas joc...@iamjochem.com wrote: Op 3/15/10 8:24 AM, Midhun Girish schreef

Re: [PHP] MySQL query not working!

2010-03-31 Thread Midhun Girish
Yes ash.. me too think the same... @ will supress any error which would have lead to die()... so die() wont come ever Midhun Girish On Wed, Mar 31, 2010 at 6:16 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote: On Wed, 2010-03-31 at 16:50 +0430, Parham Doustdar wrote: Andre

Re: [PHP] MySQL query not working!

2010-03-31 Thread Midhun Girish
hey Andrew , you are correct thanks for pointing tht.. i should have checked it before so @ just prevents the warnings and errors from showing up Midhun Girish On Wed, Mar 31, 2010 at 6:38 PM, Andrew Ballard aball...@gmail.com wrote: On Wed, Mar 31, 2010 at 8:46 AM, Ashley

Re: [PHP] image upload keeps file name ?

2010-04-01 Thread Midhun Girish
=moveFile($filearray); /*Enter name into db here*/ } } this will make sure you never over write anyfiles.. Midhun Girish On Thu, Apr 1, 2010 at 3:25 PM, Ashley Sheridan a...@ashleysheridan.co.ukwrote: of the web root, which will prevent people from maliciously uploadi

Re: [PHP] str_replace help

2010-04-02 Thread Midhun Girish
well david actually $var = str_replace(chr(13),\n,$value) will replace char(13) with \n... but \n wont come up in html unless u give a pre tag.. u need to put $var = str_replace(chr(13),br/,$value) in order to got the required output Midhun Girish On Fri, Apr 2, 2010 at 7:03 PM, Ashley

Re: [PHP] Beginner's question: How to run a PHP web application locally?

2010-04-08 Thread Midhun Girish
The best option in windows would be xampp or wamp same goes true with linux. Midhun Girish On Thu, Apr 8, 2010 at 5:12 PM, Bastien Helders eldroskan...@gmail.com wrote: Hi List, The other day, I read an article that mentioned about a tool that would permit to simulate a web

Re: [PHP] What is app.php?ph=cusid=4?

2010-06-04 Thread Midhun Girish
Depends on the server side language u intend to use... In php u can get those data via the super global array $_GET.. And u can use it anyway u want... Midhun Girish Development Lead MobAlive Technologies On Fri, Jun 4, 2010 at 7:45 PM, Michael Calkins michaelcalk...@live.comwrote: How

Re: [PHP] My truth comes out [1]

2010-10-21 Thread Midhun Girish
Really interesting thread :D . Why go for other methods when you can do it easily using if Is this an exercise or something? Midhun Girish Development Lead MobAlive Technologies Trivandrum

[PHP] A mysql question...

2010-10-21 Thread Midhun Girish
it in php Correct me if my db structure is wrong. regards, Midhun Girish

Re: [PHP] Zend Framework - getParam() Question

2011-03-11 Thread Midhun Girish
You can also try routing in zend.. http://codeutopia.net/blog/2007/11/16/routing-and-complex-urls-in-zend-framework/ Midhun Girish On Sat, Mar 12, 2011 at 11:16 AM, NetEmp net.ser...@gmail.com wrote: Hi Dan One method for this is to use URL Rewriting (which can be implemented on Apache

[PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread Midhun Girish
is extremely huge? Is there a good solution which can be implemented in php? Please help. Midhun Girish

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread Midhun Girish
Hi, - Browsers generally have a 5 minute time-out. If you send the PDF directly to the browser and reach the limit, it will be lost. It is therefore advised for very big documents to generate them in a file, and to send some data to the browser from time to time (with a call to flush() to

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Midhun Girish
'76.75.200.58' which I think is the same machine address on the message a deleted this morning for my email address -- I too got this message once today. Is it a problem with the list? Midhun Girish

Re: [PHP] saving sessions

2011-08-04 Thread Midhun Girish
is how do i make my website save new changes the user made while in their account? thanks! You will have to store the user account related data in the database for persistence Or if the site not having a 'user account system' you may use cookies to store the settings... Midhun Girish

Re: [PHP] Newbie security database connection question

2011-08-19 Thread Midhun Girish
and then use it to encrypt the dataabse uname and pass. Regards Midhun Girish

Re: [PHP] hello everybody

2012-03-22 Thread Midhun Girish
I think this would be an ideal resource for beginners http://www.w3schools.com/php/php_forms.asp. I used it when i began php. I would suggest doing the entire course in there. Really helpful. Regards Midhun Girish On Sun, Mar 18, 2012 at 10:05 PM, Jeremy Wei shuimuqing...@gmail.comwrote: you