[PHP] Re:

2011-10-28 Thread Nirmalya Lahiri
.Do you want to feel orgasms several times? http://macrokid.ma.funpic.de/com.friend.page.php?jroyahoo_id=09ep0 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Online tests for php

2011-04-13 Thread Nirmalya Lahiri
think the best method is, ask the developers to do some small projects; like.. 1) login page 2) user creation 3) sending email 4) file upload And after completion just check that the projects are running properly or not. --- নির্মাল্য লাহিড়ী [Nirmalya Lahiri] +৯১-৯৪৩৩১১৩৫৩৬ [+91-9433113536] -- PHP

Re: [PHP] Class not functioning

2009-12-14 Thread Nirmalya Lahiri
');). --- নির্মাল্য লাহিড়ী [Nirmalya Lahiri] +৯১-৯৪৩৩১১৩৫৩৬ [+91-9433113536] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] string concatenation with fgets

2009-11-24 Thread Nirmalya Lahiri
, what output you actually wants from your program? Is it like this asometextbsometextcsometext.. or, like this asometext bsometext csometext --- নির্মাল্য লাহিড়ী [Nirmalya Lahiri] +৯১-৯৪৩৩১১৩৫৩৬ [+91-9433113536] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] can you give me example of website using postgresql database?

2008-06-30 Thread Nirmalya Lahiri
Paragasu, You are making a very good plan. I, from 2004 working on PostgreSQL. I can't show you anything because my project(web based application) is a inhouse intranet project, but postgresql is too much powerfull. --- Nirmalya Lahiri [+91-9433113536] --- On Mon, 6/30/08, paragasu [EMAIL

Re: [PHP] Strategy to protect images

2008-06-15 Thread Nirmalya Lahiri
the raw image data */ ? --- Nirmalya Lahiri [+91-9433113536] --- On Sun, 6/15/08, Stefano Esposito [EMAIL PROTECTED] wrote: From: Stefano Esposito [EMAIL PROTECTED] Subject: [PHP] Strategy to protect images To: php-general@lists.php.net Date: Sunday, June 15, 2008, 5:18 PM Hi all, i

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nirmalya Lahiri
Ethan Hi, I think it is better for you to follow MVC design pattern in PHP. Search internet for any good manual on MVC design pattern. You can read the manuals of any good PHP framework also like Joomla, CakePHP These frameworks are also follow MVC design pattern. --- Nirmalya

Re: [PHP] Socket create with ssl server

2008-04-10 Thread Nirmalya Lahiri
://; not with ssl://...!!! --- Nirmalya Lahiri [+91-9433113536] __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] regex usage

2008-02-17 Thread Nirmalya Lahiri
when string consists of 4 or more digits -- To check only 4 digit, you have to specify max lengh of the string in length specifier.. if (preg_match(/\d{4,4}/,$_POST[id])) { echo $_POST[id]; } --- Nirmalya Lahiri [+91-9433113536

Re: [PHP] generate xls file on fly

2008-02-14 Thread Nirmalya Lahiri
to it. Where as in case of cookie by default browser encode the cookie in urlencoding format. To stop this feature of browser we use setrawcookie() function. --- Nirmalya Lahiri [+91-9433113536] Looking for last

[PHP] Unable to run my sample application from CakePHP

2008-02-14 Thread Nirmalya Lahiri
configuration file is present. Cake is able to connect to the database. --- Controller page name: users_controller.php having class name UsersControllers with member function login(). view page name: login.thtml model page name: user.php --- Please help me... --- Nirmalya Lahiri

Re: [PHP] Static variable in a class method

2008-02-13 Thread Nirmalya Lahiri
$i=0;$i++;}}$obj1 = new A();$obj1-foo(); //$i = 1 $obj2 = new A();$obj2-foo(); //$i = 2 where I think it should be 1, becaue it's a new instance. Pauau, Please visit the link below for help.. http://www.php.net/manual/en/language.oop5.static.php --- Nirmalya Lahiri [+91

Re: [PHP] Run Process in back ground

2008-02-12 Thread Nirmalya Lahiri
;); -- Richard, You can do it in other way. The steps are 1 Just keep the emails in database. 2 Write another shell/PHP script which will fetch email from database and send the email using local/remote MTA. 3 Run this script from cron as background process. --- Nirmalya Lahiri [+91-9433113536

Re: [PHP] PHP 5.2.5 installation

2008-02-12 Thread Nirmalya Lahiri
... --- Nirmalya Lahiri [+91-9433113536] Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs

Re: [PHP] Trouble with PHP server script

2008-02-10 Thread Nirmalya Lahiri
staffid LIKE $user; $result = mysql_query($query) or die ('Not a valid User: ' . mysql_error()); ? Robert, I think this link will help you to solve the problem. http://bugs.php.net/bug.php?id=29132 --- Nirmalya Lahiri [+91-9433113536

Re: [PHP] fgets???

2008-02-08 Thread Nirmalya Lahiri
. -- /Dan Daniel P. Brown Senior Unix Geek ? while(1) { $me = $mind--; sleep(86400); } ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Another method ? $data = file($filename); echo $data[0].\n; ? --- Nirmalya Lahiri

Re: [PHP] phpPgAdmin

2006-11-04 Thread Nirmalya Lahiri
not want to recreate everything manually :-( thx, Al. Alain, Why are you not using pg_dump command from the shell prompt of postgresql administrative user account for doing backup? If you do so, then you can restore backuped data in any postgresql server. Nirmalya Lahiri (+91-94331-13536

[PHP] getRow method of DB_Common class

2006-05-22 Thread Nirmalya Lahiri
Dear all, I am using getRow() method ob DB_Common class to get a single row from a table. As per document http://pear.php.net/manual/en/package.database.db.db-common.getrow.php this method return a single dimension array. But when I am using it, it returns a two dimension array. I don't know

[PHP] Smarty error

2006-05-05 Thread Nirmalya Lahiri
? --Nirmalya Lahiri - Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less.

Re: [PHP] Smarty error

2006-05-05 Thread Nirmalya Lahiri
Dear all, I solved the problem using {literal}{/literal} tag. Thanks every one, who gives me tips to solve the error. --Nirmalya Nirmalya Lahiri [EMAIL PROTECTED] wrote: Dear all, I wrote this script using Smarty template,which gives a syntax error .. syntax error: unrecognized

Re: [PHP] Command Line PHP Advice

2006-01-29 Thread Nirmalya Lahiri
Hi, you can do this by using unix command 'for'. Please apply the command written below reply me your experiment result. for filename in `ls *.txt`;do ./edit.php $filename var1 var2;done --Nirmalya Angelo Christou [EMAIL PROTECTED] wrote: Hello List I would like some advice from PHP

Re: [PHP] Command Line PHP Advice

2006-01-29 Thread Nirmalya Lahiri
Angelo, I am very happy after knowing that it is working. :) --Nirmalya Angelo Christou [EMAIL PROTECTED] wrote: Hello Nirmalya, Thank you for your response. With the help of your reply, I've now got it working! :) Ang. Nirmalya Lahiri [EMAIL PROTECTED] wrote: Hi, you can do

[PHP] Use of Ampersand in php

2006-01-22 Thread Nirmalya Lahiri
Hi everybody, Can any one tell me, what is the use of ampersand '' in php? Is it a pointer operator like 'C' language? Kindly note the example ?php $a=1; $b= $a; $c=$a; echo $b,$c; ? After running this example I got result 1 for both variable $b and $c. Why so? --Nirmalya