| php Programming Glossary: portabilityPHP code to convert a MySQL query to CSV [closed] http://stackoverflow.com/questions/125113/php-code-to-convert-a-mysql-query-to-csv  It would be best to avoid temp files as this reduces portability dir paths and setting file system permissions required . The.. 
 PHP PDO vs normal mysql_connect http://stackoverflow.com/questions/1402017/php-pdo-vs-normal-mysql-connect  of the hassle out of escaping all your query strings. The portability of PDO is greater than mysql_connect. So should I use PDO for..   PDO is a bit slower than the mysql_ But it has great portability. PDO provides single interface across multiple databases. That.. 
 Why not use 'protected' or 'private' in PHP? http://stackoverflow.com/questions/196737/why-not-use-protected-or-private-in-php  private or protected . Why is this Does it have to do with portability Are the public private or protected keywords not available in.. 
 Why is turning magic_quotes_gpc on considered a bad practice? http://stackoverflow.com/questions/2610524/why-is-turning-magic-quotes-gpc-on-considered-a-bad-practice  Quotes Portability Assuming it to be on or off affects portability. Use get_magic_quotes_gpc to check for this and code accordingly... 
 PHP eval and capturing errors (as much as possible) http://stackoverflow.com/questions/3223899/php-eval-and-capturing-errors-as-much-as-possible  including but not limited to performance issues security portability etc. The problem Reading the PHP manual on eval... eval returns.. 
 PHPUnit, mocked interfaces, and instanceof http://stackoverflow.com/questions/3250503/phpunit-mocked-interfaces-and-instanceof  Wouldn't that defeat the purpose of using an interface for portability Thanks  php unit testing mocking phpunit   share improve this.. 
 Escaping MySQL wild cards http://stackoverflow.com/questions/3683746/escaping-mysql-wild-cards  1 ' '.like name ' ' .' ' PDO PARAM_STR If you want more portability party time you can also have fun trying to account for MS SQL.. 
 Java OR PHP Server Side Web App and Why? [closed] http://stackoverflow.com/questions/3970290/java-or-php-server-side-web-app-and-why  was going to be the better option as far as functionality portability ect is concerned. The Web app will run against an Oracle DB.. 
 What are the advantages of object oriented PHP [closed] http://stackoverflow.com/questions/4409824/what-are-the-advantages-of-object-oriented-php  survive for only 3 seconds is pointles really. Other than portability which can just as easily be done procedurally what other gains.. 
 How to SFTP with PHP? http://stackoverflow.com/questions/4689540/how-to-sftp-with-php  install using them will guarantee that your code has zero portability. My recommendation would be to use phpseclib a pure PHP SFTP.. 
 Why need to use JSON in php and AJAX http://stackoverflow.com/questions/4881876/why-need-to-use-json-in-php-and-ajax    share improve this question   Why use JSON The answer is portability and structure . JSON is portable because parsers and writers.. 
 Doctrine2 doesen't set sequence to default for id column (postgres) http://stackoverflow.com/questions/6076180/doctrine2-doesent-set-sequence-to-default-for-id-column-postgres  for Oracle and PostgreSQL. This strategy provides full portability. ... IDENTITY Tells Doctrine to use special identity columns.. of a row. This strategy does currently not provide full portability and is supported by the following platforms MySQL SQLite AUTO_INCREMENT.. and PostgreSQL SERIAL . They suggest AUTO for maximum portability @Id @Column type integer nullable false @GeneratedValue That.. 
 What's the difference between $_SERVER['PHP_SELF'] and $_SERVER['SCRIPT_NAME']? http://stackoverflow.com/questions/6719180/whats-the-difference-between-serverphp-self-and-serverscript-name  php framework and I used _SERVER 'SCRIPT_NAME' to optimize portability. That way I don't need to manually configure the path anymore... 
 PHP, Simplest Two Way Encryption [closed] http://stackoverflow.com/questions/9262109/php-simplest-two-way-encryption  other end. The security isn't as big of a concern as the portability of the code so I'd like to be able to keep things as simple.. 
 Progress bar with PHP & Ajax http://stackoverflow.com/questions/9311986/progress-bar-with-php-ajax  beautiful one but it does have the advantage of maximum portability. As a side note please don't pass strings to setInterval pass.. 
 |