PHP means PHP(Personal Home Page) Hypertext Pre-processor..Php is open source code.It is a server-side scripting language, and is powerful tool making the dynamic web pages.This server-sidescripts are special commands you must place in Web pages. PHP is html embedded script language,it is the common syntax like c,java..It is vary easy to design the web page and to reduce the time to create the large web pages.It is widely-used as an alternate to ASP.PHP is interacts with number of databases like mysql, sqlserver, oracle.It is simple,efficience,flexible to learn.
About HTML
HTML as Hyper Text Markup Language.It is used for to create the web pages in client side/browser side.HTML is easy to learn.
HTML Tags
HTML tags are keywords (tag names) surrounded by angle brackets like <html>
HTML tags normally come in pairs like <b> and </b>
The first tag in a pair is the start tag, the second tag is the end tag The end tag is written like the start tag, with a forward slash before the tag name Start and end tags are also called opening tags and closing tags
Example:
<html>
<body>
<h1>Welcome to Online tutorials</h1>
<p>Welocme</p>
</body>
</html>
<body>
<h1>Welcome to Online tutorials</h1>
<p>Welocme</p>
</body>
</html>
No comments:
Post a Comment