Home » Web development » Page 4

Web development

PHP tutorial: Variables in PHP

Variables in PHP (1) As with other programming language, PHP has the provision to define variable and manipulatewe have several types of variables in PHP, the most common used one is the string. It is use to store both the text and number .All the variable start with $ sign Example $tot= “This is total”; …

PHP tutorial: Variables in PHP Read More »

text tags in HTML

So far you have understood the introductory tags in html and here is the example of html based on that <html> <head> <title>My fisrt Web page</title> </head> <body> Hello techgoeasy </body> </html> Now in this section , we will learning about text tags in HTML Tags   Meaning <h1> and </h1> <h1> tags  tell the …

text tags in HTML Read More »

What is HTML5

HTML5 is a core technology markup language of the Internet used for structuring and presenting content for the World Wide Web. It is the fifth revision of the HTML standard (created in 1990 and standardized as HTML 4 as of 1997) and, as of December 2012, is a candidate recommendation of the World Wide Web …

What is HTML5 Read More »

PHP echo construct

Today I had learned about echo in PHP , it is not a function , it is a language construct. By language construct I mean that meaning that it is an integral part of PHP itself. It allows us to output data on the users web browser. You can output values stored in a variable …

PHP echo construct Read More »

Scroll to Top