Related Articles
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 Fix Google Play Store Error 194
Google play store error code 194 is the latest problem android users are facing. Due to this Google play 194 error users are not able to update or download new apps. Last week I was trying to update Skype on my phone and got error: “*Skype* Could not be Downloaded due to an error. (194)”. […]
Do You Know Difference Between F5 and CTRL+F5
While debugging code or writing code many developers come across refreshing a page, but do you know what exactly the difference between F5 and CTRL+F5? When a user press F5 a new request is sent to the web server and in it sends backs a response for the request as well. But when the response header […]