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

Nodejs Events

Events in Node.js The EventEmitter Object You can assign event handlers to your own events with the EventEmitter object. In the example below we have created a function that will be executed when a "scream" event is fired. To fire an event, use the  emit()  method. var events = require('events'); var eventEmitter = new events.EventEmitter();  //Create an event handler:  var myEventHandler = function () {   console.log('I hear a scream!');  }  //Assign the event handler to an event: eventEmitter.on('scream', myEventHandler);  //Fire the 'scream' event:  eventEmitter.emit('scream');

Family get-together with Ramadan Ifthar 2017

Family get-together with Ramadan Ifthar 2017

Node.js and Raspberry Pi

Raspberry Pi is a small, multi-use computer. With Node.js you can do amazing things with your Raspberry Pi. What is the Raspberry Pi? The Raspberry Pi is a small, affordable, and amazingly capable, credit card size computer. It is developed by the Raspberry Pi Foundation, and it might be the most versatile tech ever created. Creator Eben Upton's goal was to create a low-cost device that would improve programming skills and hardware understanding. Due to the small size and price of the device, it has become the center of a wide range of projects by tinkerers, makers, and electronics enthusiasts. Raspberry Pi and Node.js The Raspberry Pi has a row of GPIO (General Purpose input/output) pins, and these can be used to interact in amazing ways with the real world. This tutorial will focus on how to use these with Node.js. Write Raspbian OS Image to MicroSD Card Before we can start using our Raspberry Pi for anything, we need to get a OS installed. ...