PHP First Day
PHP Introduction:
PHP भनेको serversite Scripting Language हो बिना server चलाउन सकिदैन php लाई html संगै लेखिने भयकोले यसलाई html related langunage पनि भनिन्छ php open source हो यसबाट wordpress , jumla जस्ता लोकप्रिय software हरुबनाइएको छ php ले mysql ,oracle जस्ता database लाई support गर्दछ |
Why
PHP ?
-Platform
independent
-Server
side scripting
-To
develop CMS
-To
develop web templates
-Economic
What
we need to use PHP ?
-Web
Server
-PHP
-Database
-Text
Editor
-Web Browser
-Web Browser
Example:
<!DOCTYPE html>
<html>
<head>
<title>Welcome to php programming</title>
</head>
<body>
<h3>My first php example</h3>
<?php
echo "hello world";
echo "<br>";
echo "again hello world";
?>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Welcome to php programming</title>
</head>
<body>
<h3>My first php example</h3>
<?php
echo "hello world";
echo "<br>";
echo "again hello world";
?>
</body>
</html>