Related Articles
5 Free Web Hosting Providers With Linux PHP and Mysql
Below are the Top Best 5 Free Web Hosting Providers With Linux PHP and Mysql along with Cpanel systems. Free Web Hosting Websites 1. 000WebHost 000WebHost.com provides one of the most reliable and feature-rich web hosting service without advertising. All accounts come with 500 MB disk space, 100 GB data transfer and PHP and MySql […]
Best way to loop through a PHP mysql Resultset
If you want to loop throuh the mysql result set twice then use below way. $result = mysql_query(“SELECT * FROM my_table”);while($row = mysql_fetch_assoc($result)) {// inside the loop} The problem is, if you want to loop through the same result set again, you will get an error because the internal pointer is currently at the end […]
How to ini_set in PHP
You can initilize local settings in a php file.You can set values like max_execution_time, default_socket_timeout, memory_limit, mysql.connect_timeout, user_ini.cache_ttl, display_errors and log_errorsit always nice to check the errors in PHP files with error_reporting. Below is the sample script to set ini_set values. If you dont want to set every time in PHP script simply set the […]

