Posts

Project Guide from Lab2, Lab6 & Lab7

Create DB DB_Connect.php Set Permission Set Volley get_all_productsVolley.php and ListView create_productVolley.php get_product_detailsVolley.php update_productVolley.php delete_productVolley.php How to install your mobile app on your phone? How to change the icon for your mobile app? Step 0:  Create Database and Tables (See Lab2) Create mySQL database: EXAMPLE   Get Familiarise with the use of phpMyAdmin   Start XAMPP Control Panel and start the Apache and MySQL module Then click on the Admin button of MySQL.  Alternatively, you can open a web browser and type localhost/phpmyadmin Click on the Database tab.  Then key in MyDatabase and click Create . Create Table “products” in MyDatabase   CREATE TABLE IF NOT EXISTS ` products ` ( `pid` int ( 11 ) NOT NULL AUTO_INCREMENT, `name` varchar ( 100 ) NOT NULL , `price` decimal ( 10 , 2 ) NOT NULL , `description` text , `qty` int ( 10 ), `created_at` timestamp ...