Skip to content

Creating Web Application Part 2

VITTAL edited this page Jan 16, 2022 · 3 revisions

Steps to create frontend and server side scripting

Step 1: Server Side Scripting

I have used PHP as my server side language there are many more like python , javascript etc. It was more comfortable for me.

Here you can find all Server Side Scripts.

  • Place all the server side scripts in one folder and name that folder it very important to remember that name because it is used to execute.
  • Now place the above folder in htdocs folder of xampp directory in your C drive or installation location.
  • If Xampp installation is done in C drive then location is C:\xampp\htdocs\app where app is the name of folder that contains server side scripts.
  • To execute Enter localhost:8081/app in your fav browser. Thats it! your are done with creating your web app.