Related Articles
7 jQuery Based UI Frameworks for Developers
Best jQuery UI Frameworks that will help to create useful and innovative mobile applications 1. jQUery UI jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library. The notable components of the jQuery UI are Tree View, Combo and Form Widgets, Color Picker, Charts, […]
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)”. […]
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 […]