Thursday , November 21 2024

Latest Posts

You Should Already Know before learn PHP

Before you continue you should have a basic understanding of the following: HTML CSS JavaScript What is PHP? PHP is an acronym for “PHP: Hypertext Preprocessor” PHP scripts are executed on the server PHP is free to download and use PHP is a widely-used, open source scripting language What Can …

Read More »

What is HTML?

HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet. It is relatively easy to learn, with the basics being accessible to most people in one sitting; and quite powerful in what it allows you to create. …

Read More »

Google uses this robot to check for lags on Android phones

Ever since the beginning days of Android, there was always concern about the platform lagging. Most reviews from that era show the reviewer flipping back between home pages to check for “lag” on the screen. Even today, with Android handsets coming to market with more powerful hardware and constantly updated …

Read More »

Start learning PHP with Tutorial Desk

PHP is a good language for developing website.It is easy to use. Basic example code og PHP. Example: <!DOCTYPE html> <html> <body> <?php echo “My first PHP script!”; ?> </body> </html>

Read More »

HTML Documents

All HTML documents must start with a type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>.

Read More »