Sunday 20 March 2016

First Chapter In PHP

                       
                                         

           hai.. welcome to my blog. Their  I am discussing about problem solving  of  PHP and MYSQL. Now we can see more than website in our daily life, but we don't think about it (how it work or what is the background work of this product). Now every websites are created in PHP and ASP programming language.This two type  languages are mainly use SQL and MYSQL databases.

                       Now I introduced about PHP and MYSQL languages. PHP is a programming  language in technology area.That is used for create website or web application.It is a sever side programming language.Only work with inside  the server.We choose WAMP server for testing purpose.Than we can have learn easy.

 The PHP code writing between the <?php ?>  tags"<?php(opening tag ) ?>(closing tag)".
first of all discussing about basic steps of php.

1.HOW TO PRINT A WORD OR SENTENCE   IN PHP.
................................................................
1.write a php program print "welcome to php"?
<html>
<head>
</head>
<body>
<?php 

echo "welcome to php";

?>
</body>
</html>

Note:
1."echo" is used for print the statements on the web page .
2."printr and echo" are two type of printing keywords allowed in the php.
    but there are present different behaviores.
   a)echo:- Multiple values are printed on the web page.
   b)printr:-Only one value printed on the web page.

Out put:

















1 comment: