Skip to main content

PHP: Hypertext Preprocessor Introduction

The fasting moving wold every programmer know .php so this post discuss about initial steps.. 

PHP: Hypertext Preprocessor Introduction - J2Program
PHP: Hypertext Preprocessor Introduction

What is PHP? 

  • PHP is an acronym for "PHP Hypertext Preprocessor" 
  • PHP is a widely-used, open source scripting language 
  • PHP scripts are executed on the server 
  • PHP costs nothing, it is free to download and use 


What is a PHP File? 

  • PHP files can contain text, HTML, CSS, JavaScript, and PHP code 
  • PHP code are executed on the server, and the result is returned to the browser as plain HTML 
  • PHP files have extension ".php" 

What Can PHP Do? 

Software Engineer Wasura
  • PHP can generate dynamic page content 
  • PHP can create, open, read, write, and close files on the server 
  • PHP can collect form data 
  • PHP can send and receive cookies 
  • PHP can add, delete, modify data in your database 
  • PHP can restrict users to access some pages on your website 
  • PHP can encrypt data

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...