Related Articles
Best Free Websites to Learn Jquery
Tuts plus, all the tutorials are of Video Lectures, it has 30 lectures you can learn all the concepts. https://tutsplus.com/course/30-days-to-learn-jquery/ Jquery from Novice to Ninja: http://www.9lessons.info/2009/10/jquery-basics-series-1.html http://www.9lessons.info/2009/11/jquery-basics-series-2.html http://www.9lessons.info/2009/11/jquery-basics-series-3.html Please write in comments section if you know any better websites
PHP Radio Button Example With Mysql DB
Simple PHP Radio button enable and disable textarea textbox example in php using Mysql
How to Add Column to Mysql Table and Auto Increment with Primary Key
Check below on How to Add a Column to Mysql Table with Auto Increment and Primary Key You can achieve it by doing Alter Command: Add Column to Mysql To Modify Column and add Auto Increment with Primary Key Query: ALTER TABLE test MODIFY COLUMN ID INT(10) PRIMARY KEY auto_increment; ALTER TABLE users ADD id […]