Views: 42open Xampp Control Panel & choose Shell Sample Commands
Category: MySQL
How to import large sql file in XAMPP ? – MySQL Dump
Views: 212We will use Command-Line Tools (Shell) to import large database SQL file. 1. Open the XAMPP Control Panel Make sure Apache and MySQL are running and click the Shell button in the XAMPP Control Panel. 2. To import database, use the following command Where: username – your MySQL username. e.g. root database_name – database name you are […]
How to Import Large Database Files in XAMPP
Views: 60Make changes in xampp\php\php.ini Look for the following: then replace the lines with the following: Source : https://carlofontanos.com/how-to-import-large-database-files-in-xampp/
Android Login and Registration Tutorial with PHP MySQL
Views: 17Ref : https://www.simplifiedcoding.net/android-login-and-registration-tutorial/
CRUD using PHP, MySQL & Rest API for Android
Views: 37 URL Method Parameter http://192.168.101.1/HeroApi/v1/Api.php?apicall=createhero POST name, realname, rating, teamaffiliation http://192.168.101.1/HeroApi/v1/Api.php?apicall=getheroes GET http://192.168.101.1/HeroApi/v1/Api.php?apicall=updatehero POST id, name, realname, rating, teamaffiliation http://192.168.101.1/HeroApi/v1/Api.php?apicall=deletehero&id=idvalue GET Ref : https://www.simplifiedcoding.net/android-mysql-tutorial-to-perform-basic-crud-operation/ Sample Code : Download Source
Displaying Custom Ads in Mobile Apps (API)
Views: 13We use ORDER BY RAND() in php to randomize the order of datas displaying, which is mainly used at Ads / Images change on every time page loads. Sample Code : Output displayed on first time, the page loads Output displayed on second time, the page loads
Convert Data from Mysql to JSON Format using PHP
Views: 50Get Datas from Database using MySQLi Function & PHP to encode as jSON References & Thanks to, Video : https://www.youtube.com/watch?v=I4SRqAS7J8UCode : https://www.webslesson.info/2016/05/convert-data-from-mysql-to-json-formate-using-php.html