Introduction of PHP

Introduction of PHP

  • Expansion is Hypertext Preprocessor
  • PHP is a server side scripting language that is embedded in HTML. It is used to manage
    dynamic content, databases, session tracking, even build entire e-commerce sites
  • It is an open-source language
  • You add, delete, modify elements within your database thru PHP
  • Access cookies variables and set cookies
  • Using PHP, you can restrict users to access some pages of your website
Syntax :
<?php
echo "Welcome to my blog"; //Prints Welcome to my blog
?>
Our code should be placed inside the  " <? " and " ?> "

Get and post

Error types in php

Leave a comment