Related Articles
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)”. […]
Auto In-feed native ads From Google Adsense
Google is inviting its publishers to try new experimental feature in AdSense Labs, to test, and provide feedback on features they’re working on. Auto In-feed native ads Auto In-feed is a native ad format placed inside your feeds. In-feed ads match the look and feel of your site, providing a better user experience for your […]
Search and Retrieve Data from MySQL DB Using PHP
Below is the Simple PHP and MYSQL Search Program. Use below database queries: CREATE TABLE IF NOT EXISTS user (id int(10) NOT NULL AUTO_INCREMENT,Name varchar(20) NOT NULL,PRIMARY KEY (id)); INSERT INTO user (id, Name) VALUES (‘1’, ‘vicky’), (‘2’, ‘vivek’); Below is the sample program: