Re: [PHP] PHP debugger

2008-04-28 Thread Jignesh Thummar
Best one is Xdebug .. But probably i would like to try this one also. - Jignesh On Mon, Apr 28, 2008 at 12:00 PM, J. Manuel Velasco - UBILIBET [EMAIL PROTECTED] wrote: Hello, Anybody knows a good debugger for PHP and basic usage? I've found: http://dd.cron.ru/dbg/, what do you think

Re: [PHP] Newbie Question: How to pass URL info to .php script ?

2008-06-19 Thread Jignesh Thummar
Ethan, you can try this: $url = www.test.com/article/3435; echo basename($url); another solution is that you can use explode() function to seprate your url from '/' or you can use regex to parse your url - Jignesh On Thu, Jun 19, 2008 at 8:18 AM, Ethan Whitt [EMAIL PROTECTED] wrote: I pasted

[PHP] upload file problem

2008-07-31 Thread Jignesh Thummar
I'm trying to upload the file. It's showing me successfully uploaded. But it's not able to move from temp directory to my defined directory my code: if (is_uploaded_file($_FILES['myfile']['tmp_name'])) { move_uploaded_file($_FILES['myfile']['tmp_name'], $myfilename); echo File .

Re: [PHP] upload file problem

2008-07-31 Thread Jignesh Thummar
it's writable. On Thu, Jul 31, 2008 at 3:37 PM, Eric Butera [EMAIL PROTECTED] wrote: On Thu, Jul 31, 2008 at 10:18 AM, Jignesh Thummar [EMAIL PROTECTED] wrote: I'm trying to upload the file. It's showing me successfully uploaded. But it's not able to move from temp directory to my defined

Re: [PHP] upload file problem

2008-07-31 Thread Jignesh Thummar
Thanks.. It's fixed... - Jignesh On Thu, Jul 31, 2008 at 6:05 PM, brian [EMAIL PROTECTED] wrote: Jignesh Thummar wrote: I'm trying to upload the file. It's showing me successfully uploaded. But it's not able to move from temp directory to my defined directory my code

Re: [PHP] geolocation

2008-09-02 Thread Jignesh Thummar
You can use this one also http://ip-to-country.webhosting.info/ This is being used by php.net site - to find country specific mirror. You can get sample code here : http://www.ruturaj.net/tutorials/php/ip-to-country Regards, Jignesh On Tue, Sep 2, 2008 at 2:18 PM, Per Jessen [EMAIL PROTECTED]

Re: [PHP] How to use MySQL queries...?

2008-10-07 Thread Jignesh Thummar
And is there any effective way to calculate the statistics of comparison of query execution timings.. For query execution statistics, you need to log slow queries. To do so, enable following two directives in my.cnf file long_query_time = 2 log-slow-queries = /var/log/mysql/mysql_slow_query.log

Re: [PHP] sms interfaces?

2008-10-08 Thread Jignesh Thummar
www.frengo.com provides SMS alert service. - Jignesh On Thu, Oct 9, 2008 at 1:25 AM, Boyd, Todd M. [EMAIL PROTECTED] wrote: -Original Message- From: Rene Veerman [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2008 2:33 PM To: php-general@lists.php.net Subject: [PHP]

[PHP] how to implement search on site

2008-11-13 Thread Jignesh Thummar
I have site of around 25 pages (pure HTML pages). I want to implement search functionality? How can I? i want to avoid database. And Apache Lucene, i dont't want to use it. Does any PHP framework provide search and indexing functionality (Exception Zend_Lucene)? Thanks, Jignesh

Re: [PHP] how to implement search on site

2008-11-13 Thread Jignesh Thummar
Zend_Lucene require lots of efforts? If i have to use DB? how can i do it? - Jignesh On Thu, Nov 13, 2008 at 9:30 AM, Richard Heyes [EMAIL PROTECTED] wrote: I have site of around 25 pages (pure HTML pages). I want to implement search functionality? How can I? i want to avoid database. And

Re: [PHP] how to implement search on site

2008-11-13 Thread Jignesh Thummar
Thanks Richard. I have to try Zend_Lucene. - Jignesh On Thu, Nov 13, 2008 at 10:17 AM, Richard Heyes [EMAIL PROTECTED] wrote: Zend_Lucene require lots of efforts? Well like everything in life to get good results will mean you will have to put some time in. But by no means an innordinate

Re: [PHP] Please Help Me ASAP

2009-04-10 Thread Jignesh Thummar
whenever you want to print HTMLs in your code you don't need to call echo or print everytime. You can use plain HTML in your php code this way. ?php //php code ? your HTML code ?php //php code ? your HTML code or you can use HEREDOC to print long string ( http://in.php.net/types.string) -

Re: [PHP] not able to use mysql server

2009-12-29 Thread Jignesh Thummar
It is problem with mysql client, it's not able to connect with mysql server. Either mysql server is not running or windows firewall is blocking to the access of port 3306. Try to disable firewall. -Jignesh On Wed, Dec 30, 2009 at 11:41 AM, Sudhakar sudhakarar...@gmail.com wrote: hi i am