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”; […]
Web development
PHP introduction and uses
History and Introduction It was initially created by Rasmus Lerdorf in 1994. As of today, the current version of PHP is version 5, with version 6 in the making. it is the most popular scripting language on the web.It was initially called Personal Home page What is PHP? PHP full form is PHP Hypertext Preprocessor. […]
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 […]
Introduction to basic tags in HTML
I am discussing here the instroduction to basic tags in HTML Tags Meaning <html> and </html> <html> tags tell the browser that it is a html page. So it is basic steps of html and every other tags comes after that <html> beginning of the html </html> end of the html The beginning <html> and […]
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 […]
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 […]