Home » Web development » PHP » Page 2

PHP

php tutorials
PHP stands for PHP Hypertext Preprocessor. PHP is a widely-used, opsource scripting language. It is similar in syntax to C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly .PHP scripts are executed on the server and return the html or plain text to the browser

There are various reason why PHP is so famous and used in all web development projects. The largest blogging platform wordpress is built over PHP

1) it runs on various platforms (Windows, Linux, Unix, Mac OS X,Solaris,Exalogic,ibm etc.)
2) it is compatible with almost all servers used today (Apache etc.)
3) it supports a wide range of databases. It can connect to oracle,mysql,sqlserver,sqllite etc
4) it is free. Download it from the official PHP resource: www.php.net
5) PHP learning curve is quite simple and we can use it quite efficiently as a language of website

This catagory contains articles on all the features on PHP, PHP coding

PHP array functions

In this post , we will be discussing the php array functions. As with any other programming language,PHP has its own array functions What is array A array is the chain of values stored in single variable where values can be retrived based on there position in the array $arr ={a,b,c,d,e,f}; There are three type …

PHP array functions Read More »

Step by step guide to build local Apache PHP MySQL development environment on windows

A php developer would offcourse like to test the php file before deploying on the webserver.A local Apache PHP MySQL development environment on windows allows you to test your code as you develop your web application before publishing it to the web. This article will guide you through setting up a local Apache PHP MySQL development environment …

Step by step guide to build local Apache PHP MySQL development environment on windows Read More »

How to define constant in php

Constants in PHP (1) A constant is a name or an identifier for a simple value. It is defined using the define function and it does not start with $ sign Syntax define(name, value, case-insensitive) Parameters: name: Specifies the name of the constant value: Specifies the value of the constant case-insensitive: Specifies whether the constant …

How to define constant in php Read More »

Scroll to Top