It is very important that webmasters validate their websites by checking the html code that is produced on the front end of the site. This can be done with online tools like the markup validation tool of the W3C website or offline tools such as the CSE HTML Validator Lite. The HTML validator can be [...]
- Author: Martin Brinkmann
- Comments: 10
Fix Outlook 2010
Microsoft’s plans to use the Word HTML rendering engine to display HTML emails in the upcoming email software program Microsoft Outlook 2010 has created quite a few protest websites that try to convince Microsoft to change their plans. Outlook 2010 is still in the beta stage and Microsoft is encouraging users to submit feedback to [...]
- Author: Martin Brinkmann
- Comments: None
How To Display Valid Markup Code In Websites
There are two difficulties or problems that Internet users encounter when they want to paste code into forms to display these on the Internet. The first problem that can be encountered is that the website will interpret part or all of the code instead of displaying it. A basic example would be to display the [...]
- Author: Daniel Pataki
- Comments: None
How to style your page using CSS
Beginner article coming up, it’s time to get to know the wonderful world of CSS! Cascading Style Sheets, or css, is the standard method of styling a webpage. In fact, you should have no styling in HTML whatsoever. HTML was not designed to be a presentation language, it’s more of a structural-semantic language. In other [...]
- Author: Daniel Pataki
- Comments: 4
Scriptastique web development roundup
As you all know, we started a web development section here on gHacks. After asking for your opinion and talking about it with Martin, we decided to keep writing 1-2 posts a week here, but move most of the material into a new site called Scriptastique. Right now we only have the blog, but tutorial [...]
- Author: Daniel Pataki
- Comments: 2
How echo works in PHP
The most basic command, and probably the first you’ll learn when taking a look at PHP is “echo”. The first example in many books and online tutorials is the following. Create a file, give it an extension of “.php”, upload it to your server, and edit it like so: <?php echo ‘Hello World’; ?> I [...]
PHP – what it does and what it doesn’t
PHP is a Server side scripting language. Its primary competitors are ASP (Microsoft), JSP (Sun), CFM (Adobe), and Perl (often called cgi by hosting companies, although it is not the only cgi language). PHP was originally created in 1995, so as a technology it is fairly mature. Version 5.x is the latest stable version and [...]
- Author: Martin Brinkmann
- Comments: 6
Ghacks Web Development PDF Article Compilation January 09
The following article contains all web development articles that have been published in January 09. The articles are provided in PDF format to make them readable on most operating systems and devices. We are providing article compilations to give you the chance to read the articles offline and keep them as reference without having to [...]
Web Development: PHP – what role does it fill
Before we try to work with PHP we need understand the role it fills – what problem does it address. The World Wide Web is built on a client-server model. A client computer requests a page which is supplied by a Web Server. The browser then renders the page for the user to view. The [...]
