Re: [PHP] hello everybody

2012-03-21 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 wrote: > you can read the cont

Re: [PHP] Newbie security database connection question

2011-08-19 Thread Midhun Girish
to guess substitution ciphers' [i dunno if tht exists] or create an encryption logic of your own and then use it to encrypt the dataabse uname and pass. Regards Midhun Girish

Re: [PHP] saving sessions

2011-08-04 Thread Midhun Girish
location: login_success.php'); > } > > Now what i would like to know 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 th

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread Midhun Girish
not got through '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] 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

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

2011-07-13 Thread Midhun Girish
extremely huge? Is there a good solution which can be implemented in php? Please help. 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 wrote: > Hi Dan > > One method for this is to use URL Rewriting (which can be implemented on > Apache us

[PHP] A mysql question...

2010-10-21 Thread Midhun Girish
etch two different rowsets and compare it in php Correct me if my db structure is wrong. regards, Midhun Girish

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-general@lists.php.net

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 wrote: > > How is it used

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 wrote: > Hi List, > > The other day, I read an article that mentioned about a tool that would > permit to simulate a web environment

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 tag.. u need to put $var = str_replace(chr(13),"",$value) in order to got the required output Midhun Girish On Fri, Apr 2, 201

Re: [PHP] image upload keeps file name ?

2010-04-01 Thread Midhun Girish
$_FILES as $file_name => $filearray) { if( $filearray['error']=='') { $filenametobestored=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 wrote: > of the web > root, which will prevent people from maliciously uploadi >

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 wrote: > On Wed, Mar 31, 2010 at 8:46 AM, Ashley Sheridan >

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 wrote: > On Wed, 2010-03-31 at 16:50 +0430, Parham Doustdar wrote: > > > Andre, > > The

Re: [PHP] Event Handling

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

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 wrote: > On Mon, 2010-03

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] Event Handling

2010-03-15 Thread Midhun Girish
el), set 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 Devel

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 K

Re: [PHP] includes linking to other files, help with relatives

2009-12-06 Thread Midhun Girish
a reference http://www.ibdhost.com/help/path/ GL... Midhun Girish On Mon, Dec 7, 2009 at 11:17 AM, Allen McCabe wrote: > I am creating a database connection path that check for a session variable > to get the username, password, dbname, etc., but if the session has not > been >