Posts

Showing posts from September, 2017

Make pendrive bootable for windows 10 using cmd

Image
Connect your pendrive that you want to make bootable into usb port. Open command prompt with administrative permissions. For that press windows button, type cmd, right click on command prompt and select run as administrator. Type  diskpart command to open disk partition software. Type list disk command. This will show all the storage drives connected to computer. Select your pendrive using select disk command. Type select disk <disk number> . For eg. "select disk 1". Now type clean  command.It will erase all the data in your pendrive. Type create partition primary command. This will create primary partition on your pendrive. Now use select partition 1 command. This will select the partition that you have just created. Type format fs=ntfs quick command. This will format the pendrive with ntfs file system. Use active command to set the current partition active. Now assign the letter to usb drive using assign letter=z command. This will assign letter "z...

How to run PHP code in android phone?

Image
step 1: Install KickWeb Server from your playstore. step 2: Open the application, you will get the screen shown below. step 3: Scroll down and click on confirm button. step 4: This will open app info window. Select permissions from it. step 5: Turn on the storage permissions. step 6: Now your web server is ready to use. Open the application and start the server. 1. To access web server. 2. To access database server. 3. settings. step 7: In settings you can change the username and password of your database. step 8: To write a php program install DroidEdit app from your playstore. step 9: Create a new folder inside your htdocs folder. For example "myfiles". step 10: Create a new php file using DroidEdit app and save it inside your folder. step 11: Now open your server and click on first earth symbol in option bar and type address "localhost:8080/myfiles/index.php" and hit enter. step 12: A...