php Programming Glossary: suboptimal
php & mySQL: Query does not use index in table join http://stackoverflow.com/questions/2333878/php-mysql-query-does-not-use-index-in-table-join the optimizer still recognizes that reading the index is suboptimal and switches the table order to avoid doing so. You can force..
How do i track the visitor's country and redirect them to appropriate sites? http://stackoverflow.com/questions/2832380/how-do-i-track-the-visitors-country-and-redirect-them-to-appropriate-sites url This causes two HTTP requests however and is thus suboptimal. A better approach is to use the Apache module to do rewriting..
PHP Tools for quality check [closed] http://stackoverflow.com/questions/4202311/php-tools-for-quality-check and looks for potential problems such as possible bugs suboptimal code or overcomplicated expressions. phpcpd is a Copy Paste..
How do you prevent SQL injection in LAMP applications? http://stackoverflow.com/questions/47087/how-do-you-prevent-sql-injection-in-lamp-applications preferably when generating the SQL. The first solution is suboptimal because you then need to unescape each value if you want to..
How does one use the RDBMS in a performant way on top of Zend_Db_Table? (if at all…) http://stackoverflow.com/questions/4997577/how-does-one-use-the-rdbms-in-a-performant-way-on-top-of-zend-db-table-if-at-a the RDBMS already provides in PHP which is obviously suboptimal. On the other hand Zend_Db_Table makes tables behave a bit more..
How to make a chat room script with PHP? http://stackoverflow.com/questions/772471/how-to-make-a-chat-room-script-with-php because the browser constantly refreshes. this is a suboptimal solution. use ajax and push this works with multipart responses..
|