phpstorm. not free (as in beer and speech), but amazing and worth any $
you pay.
you can download 30 days trial from: http://www.jetbrains.com/phpstorm/
Barak
On 2 December 2012 12:18, Erez D wrote:
>
> another short question:
> anybody knows of a good PHP IDE (on linux of course) ?
Thank you all for your replies
I'll probably stick with PDO
another short question:
anybody knows of a good PHP IDE (on linux of course) ?
On Sun, Dec 2, 2012 at 11:22 AM, Erez D wrote:
> Hello,
>
> We are starting a new project, one that will be used for production and
> should be supported
Personally I like PDO a lot.
mysql_ should definitely be avoided, but as far as I always understood
mysqli_ is the alternative to PDO for those people who don't like
Object oriented stuff...
PDO is afaik an official part of php and the "recommended" way to
interact with a db so I have a hard time b
Hi Erez,
>From PHP 5.4 the default for all the mysql extensions family is mysqlnd
(PHP native mysql driver), and it seems that for the next PHP release (5.5)
ext/mysql will be deprecated https://wiki.php.net/rfc/mysql_deprecation
So PDO is probably the right answer.
Kaplan
On Sun, Dec 2, 2012
Hello,
We are starting a new project, one that will be used for production and
should be supported for years.
We need to access mysql via php
currently i seem to preffer PDO as it supports not only mysql but many
other DBs.
searching the net, i see many comparisons of mysql vs mysqli vs pdo.
the