RE: [PHP-WIN] Need help with mysql error

2013-06-07 Thread Arno Kuhl
-Original Message- From: GuRu [mailto:nagendra802...@gmail.com] Sent: 07 June 2013 12:22 PM To: php-windows@lists.php.net; php mysql; phpexpe...@yahoogroups.com Subject: [PHP-WIN] Need help with mysql error Hi All, I am working a a project in which there is a table with some variables. I

RE: [PHP-WIN] URL rewrite

2012-07-12 Thread Arno Kuhl
-Original Message- From: Gavin Chalkley [mailto:gavin.chalk...@gmail.com] Sent: 11 July 2012 10:08 PM To: 'Vinay Kannan'; php-windows@lists.php.net; phpexpe...@yahoogroups.com Subject: RE: [PHP-WIN] URL rewrite Vinay, This does make for better SEO -Original Message- From: Vinay K

RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Arno Kuhl
-Original Message- From: Alice Wei [mailto:aj...@alumni.iu.edu] Sent: 03 August 2010 04:33 PM To: a...@dotcontent.net; php-windows@lists.php.net Subject: RE: [PHP-WIN] PHP Debugger for Windows? Thanks for your pointer, I have downloaded the trial version and started to play around with it

RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Arno Kuhl
-Original Message- From: Keith Davis [mailto:keithda...@pridedallas.com] Sent: 03 August 2010 04:24 PM To: a...@dotcontent.net; Ferenc Kovacs; Steven Scott Cc: php-windows@lists.php.net Subject: RE: [PHP-WIN] PHP Debugger for Windows? Ah, and XDebug is completely free. Always a plus. Ke

RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Arno Kuhl
-Original Message- From: Keith Davis [mailto:keithda...@pridedallas.com] Sent: 03 August 2010 04:07 PM To: Ferenc Kovacs; Steven Scott Cc: php-windows@lists.php.net Subject: RE: [PHP-WIN] PHP Debugger for Windows? Testing the 2.1.0 x64 DLL and it seems much more stable...though, still slo

RE: [PHP-WIN] PHP Debugger for Windows?

2010-08-03 Thread Arno Kuhl
-Original Message- From: Alice Wei [mailto:aj...@alumni.iu.edu] Sent: 03 August 2010 01:57 AM To: php-windows@lists.php.net Subject: [PHP-WIN] PHP Debugger for Windows? Hi, I am exploring some of the possible tools that I could use for PHP debugging purposes on Windows operating syst

RE: [PHP-WIN] is ZendStudio IDE necessary????

2009-07-03 Thread Arno Kuhl
-Original Message- From: Ravi Joshi [mailto:ravi.josh...@yahoo.com] Sent: 02 July 2009 05:39 PM To: php mailling list Subject: [PHP-WIN] is ZendStudio IDE necessary Hi,                I have Arachnophilia(IDE) and i can write php script using it.Is it necessary to install ZendStudio-7

RE: [PHP-WIN] Does a spreadsheet-like front end exist for MySQL?

2009-04-06 Thread Arno Kuhl
-Original Message- From: Bill Mudry [mailto:billmu...@rogers.com] Sent: 06 April 2009 04:02 PM To: php-windows@lists.php.net Subject: [PHP-WIN] Does a spreadsheet-like front end exist for MySQL? I use phpmyadmin a lot. It lacks one feature that I wish existed. You can edit only one record

RE: [PHP-WIN] Query Syntax - WHERE fieldname1='fieldvalue1' AND fieldname2='fieldvalue2'

2007-05-22 Thread Arno Kuhl
Try this: $query = "SELECT $field_name FROM classifieds WHERE $field_name1 = '".$field_value1."' AND $field_name2 = '".$field_value2."'"; Also, check the data types - if $field_name1/2 is an int then you don't need the single quotes. Arno -Original Message-