php Programming Glossary: covers
Importing CSV data using PHP/MySQL http://stackoverflow.com/questions/11448307/importing-csv-data-using-php-mysql stay a decimal once placed in the database I think that covers everything thanks in advance for any help EDIT Just done a test..
What is the proper way to setup and use php-resque? http://stackoverflow.com/questions/11814445/what-is-the-proper-way-to-setup-and-use-php-resque one job. There's a tutorial explaining how to do that. It covers from the basic of a queue system to how to use and implement..
Send iPhone HTTP request to Apache PHP webserver http://stackoverflow.com/questions/1181751/send-iphone-http-request-to-apache-php-webserver client to a web server. The documentation is very good and covers all the important topics like asynchronous vs synchronous requests..
How can an SQL query return data from multiple tables http://stackoverflow.com/questions/12475850/how-can-an-sql-query-return-data-from-multiple-tables this question Part 1 Joins and Unions This answer covers Part 1 Joining two or more tables using an inner join See the..
What do the ENT_HTML5, ENT_HTML401, … modifiers on html_entity_decode do? http://stackoverflow.com/questions/13745353/what-do-the-ent-html5-ent-html401-modifiers-on-html-entity-decode-do ENT_HTML401 . That one will not use apos but #039 . That covers almost everything. I am not going to list all entity differences..
Ensuring valid utf-8 in PHP http://stackoverflow.com/questions/1523460/ensuring-valid-utf-8-in-php to TRUE for this purpose. But I'm not sure this actually covers all invalid UTF 8 sequences. The function does not claim to..
Mechanisms for tracking DB schema changes [closed] http://stackoverflow.com/questions/1607/mechanisms-for-tracking-db-schema-changes other project code. This Oracle guide to Rails migrations covers migrations quite well. Developers using other languages have..
How to develop C extentions for PHP apps? http://stackoverflow.com/questions/2970682/how-to-develop-c-extentions-for-php-apps best resource although outdated in several aspects it only covers PHP until version 5.1 is Extending and Embedding PHP by Sara..
PHP APIs for Hotmail, Gmail and Yahoo? [closed] http://stackoverflow.com/questions/326379/php-apis-for-hotmail-gmail-and-yahoo could take to developing one for hotmail Is there one that covers all of these bases that I could implement Any help would be..
PHP: Creating Extensible CMS System http://stackoverflow.com/questions/3356376/php-creating-extensible-cms-system want to restrict editing to the filesystem. While this covers HTML creation you should also take CSS into consideration. Will..
Recursive MySQL query? http://stackoverflow.com/questions/3704130/recursive-mysql-query a way to do it with joins but the MySQL documentation only covers retrieving parts of a tree up to finite depth. Is there a way..
Simple PHP login with cookie http://stackoverflow.com/questions/4329806/simple-php-login-with-cookie value login form php It's a pretty ugly example but this covers the meat of it if the user is logged in already do the secure..
MySQL and NoSQL: Help me to choose the right one http://stackoverflow.com/questions/4419499/mysql-and-nosql-help-me-to-choose-the-right-one table with 500 million rows and growing with a query that covers 15 million rows in 0.02 seconds while under load Further optimisations..
PHP: Regex to ignore escaped quotes within quotes http://stackoverflow.com/questions/5695240/php-regex-to-ignore-escaped-quotes-within-quotes which was solved and optimized long ago. Jeffrey Friedl covers this question in depth as an example in his classic work Mastering..
Replacing mysql_* functions with PDO and prepared statements http://stackoverflow.com/questions/8061185/replacing-mysql-functions-with-pdo-and-prepared-statements identifier a syntax keyword. so you can see that escaping covers only one issue. but of course if you treat numbers as strings..
PHPUnit best practices to organize tests http://stackoverflow.com/questions/8313283/phpunit-best-practices-to-organize-tests starting a new project with tests My suggestion is to use @covers tags like described in my blog Only for unit tests always cover.. tests always cover all non public functions always use covers tags. Don't generate coverage for your integration tests. It..
How can I get the user's IP address in PHP? [duplicate] http://stackoverflow.com/questions/848091/how-can-i-get-the-users-ip-address-in-php PHP5 through suPHP. Above post has been read. This code covers all points mentioned but still returns unknown addresses. My..
Is it possible to capture search term from Google search? http://stackoverflow.com/questions/941469/is-it-possible-to-capture-search-term-from-google-search Referer header is only available with HTTP 1.1 but that covers just about any somewhat modern browser. Browser may also forge..
Connecting remote PHP/Apache server to Quickbooks/Windows http://stackoverflow.com/questions/953309/connecting-remote-php-apache-server-to-quickbooks-windows and get back XML responses. It's pretty comprehensive and covers most but not all of the things you can do in the GUI. To talk..
Can mysql_real_escape_string ALONE prevent all kinds of sql injection ? [duplicate] http://stackoverflow.com/questions/9814642/can-mysql-real-escape-string-alone-prevent-all-kinds-of-sql-injection . Prepared statements is not a silver bullet too. It covers your back for only half of possible cases. See the important..
|