Skip to main content

Installing and Testing Wampserver Introduction 1

Confidently, you have now downloaded and installed Wampserver. This will provide you a server on your personal PC (Windows users), everywhere you can test your scripts. If you haven't yet dowloaded the Wampserver software, you can download it here:


you should have an new icon in the bottom right, where the clock is:

j2program


j2programClick on localhost, though, and you'll see this page appear: (Localhost just refers to the server running on your own computer. Another way to refer to your server is by using the IP address 127.0.0.1.)

Click the link under Tools that says phpinfo(). If all went well, you should be looking at the following page (The one below is a different php version, but don't worry about this - as long as you see something):

If you saw the above page, then congratulations! Your PHP server is up and running, and you can make a start scripting PHP pages.

Troubleshooting

Software Engineer Darshana Shan
If you don't see the info.php page, then you will need to refer to the wampserver forums. The page you need is here:



you need to add the script name after localhost in your browser. So instead of this:

 http://localhost/index.php

Wampserver Forums

Comments

Popular posts from this blog

Ministry of Higher Education Project : SLIATE (live project)

ABOUT SLIATE Our Mission  "Creating Excellent Higher National and National Diplomates with Modern Technology for Sustainable Development" Our Vision "To Become the Centre of Excellence in Technological Education" As per the recommendations of the Committee appointed by Prof. Wiswa Waranapala, Deputy Minister of Higher Education in 1994, the Sri Lanka Institute of Advanced Technical Education (SLIATE) was formed in 1995, under the Sri Lanka Institute of Advanced Technical Education Act No. 29 of 1995, In 2001 the name of the institution was amended as Sri Lanka Institute of Advanced Technological Education, (SLIATE). It functions as an autonomous Institute for the management of Higher National and National Diploma courses. The main purposes of establishing SLIATE were to reform and restructure the entire technical and vocational education system in relation to the changing needs of economic development, to meet manpower requirements of natio...

Micro Loan Banking Management System

Android SQLite Database 1

Using Android Studio Crating a Database (SQLite) 1. NEW PROJECT 2.CREATE  A CLASS NAME CALL (DB.class) 3.import SQLiteDatabase    import SQLiteOpenHelper SCREEN SHOT OF CODE (IMAGE) CODE (TEXT) Bellow package com.example.rimzan.j2program ; import android.content.Context ; import android.database.sqlite.SQLiteDatabase ; import android.database.sqlite.SQLiteOpenHelper ; public class DB extends SQLiteOpenHelper { public static final String DATABASE_NAME = "Student.db" ; public static final String TABLE_NAME = "Student_Table" , COL_1 = "ID" , COL_2 = "NAME" , COL_3 = "SURENAME" , COL_4 = "MARKS" ; public DB(Context context) { super (context , DATABASE_NAME ,null, 1 ) ; SQLiteDatabase db=getWritableDatabase() ; } @Override public void onCreate (SQLiteDatabase db) { db.execSQL( "CREATE TABLE " + TABLE_NAME + " (ID INTEGER PRIMARY KEY AU...