[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
ws. > I 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-94

Re: [PHP] Class not functioning

2009-12-14 Thread Nirmalya Lahiri
other point, you can't add a message into the array by calling the member function addtoQ() using scope resolution operator "::". If you really want to add message into the array, you have to call the member function from within the object. (ie. $Notif->addtoQ('ERROR! There Was An Error Updating The Database!', 'error');). --- নির্মাল্য লাহিড়ী [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
> > And when I run the script, it looks like; > a > sometextb > sometextc > sometextd > ... > > > Any ideas? > So, what output you actually wants from your program? Is it like this asometextbsometextcsometext.. or, like this asometext bsometex

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 &l

Re: [PHP] Strategy to protect images

2008-06-15 Thread Nirmalya Lahiri
Yes... you can do it. Instade of direct url image, use the url of a php script written(algorithm) below.. --- Nirmalya Lahiri [+91-9433113536] --- On Sun, 6/15/08, Stefano Esposito <[EMAIL PROTECTED]> wrote: > From: Stefano Esposito <[EMAIL PROTECTED]> > Subject: [PHP] S

Re: [PHP] How to structure code for forms

2008-06-08 Thread Nirmalya Lahiri
ike Joomla, CakePHP.... These frameworks are also follow MVC design pattern. --- Nirmalya Lahiri [+91-9433113536] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Socket create with ssl server

2008-04-10 Thread Nirmalya Lahiri
st" command from unix/linux terminal. Another point is...as I know the url of ssl encripted page starts with "https://"; not with "ssl://"...!!! --- Nirmalya Lahiri [+91-9433113536] __ Do You Yahoo!? Tired of spam? Yah

Re: [PHP] regex usage

2008-02-17 Thread Nirmalya Lahiri
t; { echo $_POST[id]; } > > but preg_match returns true 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

[PHP] Unable to run my sample application from CakePHP

2008-02-14 Thread Nirmalya Lahiri
abase 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... --- Nirma

Re: [PHP] generate xls file on fly

2008-02-14 Thread Nirmalya Lahiri
$_COOKIE, i can use setrawcookie to avoid urlencoding. is > ther > anything similar in $_SESSION? > > thanks, > t. hiep Hiep, There is no need to use "setraw" in case of session. Because every session variable keeps its value as

Re: [PHP] Static variable in a class method

2008-02-13 Thread Nirmalya Lahiri
; public > function foo() {static $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.ne

Re: [PHP] PHP 5.2.5 installation

2008-02-12 Thread Nirmalya Lahiri
which are reported as missing..!!! Without that no one can identify the error... --- Nirmalya Lahiri [+91-9433113536] Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs

Re: [PHP] Run Process in back ground

2008-02-12 Thread Nirmalya Lahiri
> header("Location:http://domain.com";); > > -- 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 fr

Re: [PHP] Trouble with PHP server script

2008-02-10 Thread Nirmalya Lahiri
ql_select_db() or die("Can't select > database: > ".mysql_error()); > > $query = "SELECT * FROM user WHERE staffid LIKE $user"; > $result = mysql_query($query) or die ('Not a valid User: ' . > mysql_error()); >

Re: [PHP] fgets???

2008-02-08 Thread Nirmalya Lahiri
= fgets($handle); > echo $data."\n"; > ?> > > So long as you don't do a while() loop or something similar, > fgets() will only read the first line. > > -- > > > Daniel P. Brown > Senior Unix Geek > > > --

Re: [PHP] phpPgAdmin

2006-11-04 Thread Nirmalya Lahiri
port to > my web hoster server... > > and i do 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 ba

[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 w

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: unreco

[PHP] Smarty error

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

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

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 us

[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 After running this example I got result 1 for both variable $b and $c. Why so? --Nirmalya __ Do