Home Answers Viewqa PHP What's PHP ?

 
 


Java Coder
What's PHP ?
1 Answer(s)      2 years and 5 months ago
Posted in : PHP

What's PHP ?

View Answers

December 27, 2010 at 12:20 PM


Hi friends,

PHP stands for Hypertext Preprocesser. It is a server side programing language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.

Basic syntax:

A PHP code block starts with "<?php"` and ends with `"?>". A PHP code can be placed anywhere in the HTML document.

Example:

<html>
<head>
<title>First PHP Example </title>
</head>
<body>
<?php
$text="Hello php";
echo  $text;
?>
</body>
</html>









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.