Archive for August, 2011

Wednesday, August 31st, 2011

Forms

Forms are a complicated enough part of XHTML that I wrote a whole series of tutorials just on how to code forms properly. Here’s the first which shows the basic tags you need to set up a form with just a single field in it. Forms

Tuesday, August 30th, 2011

Paypal eCheck Clearing

Paypal doesn’t process all payments straight away. When someone pays by echeck the payment usually takes about four days to clear. So what do you do when you are selling electronic goods? If you provide access to download the purchased product straight away then the buyer has four days in which to cancel the payment [...]

Monday, August 29th, 2011

Tables and Ids

For those of you still using tables for layout in your web pages, here’s another reason for getting rid of them – it breaks the functionality of ids in your page. One of the uses for an id is to provide a point in the page that can be linked to – unfortunately at least [...]

Sunday, August 28th, 2011

Divs and Spans

Not everything you need to identify in your web page has an appropriate semantic tag. So where you have a division within your page that needs styling or need to span some content with a style you use one of the generic tags. Divs and Spans

Saturday, August 27th, 2011

Links

You can’t have much of a web without links between pages. This fifth XHTML tutorial looks at how to code your links. Links

Friday, August 26th, 2011

Simple Lists

A lot of the things you will want in your web page are actually lists so it is essential that you know how to code them as lists. For example most web pages have some form of navigation option that is basically a list of links. We’ll get to links later because before you can [...]

Thursday, August 25th, 2011

Images

A page consisting of nothing but text is rather boring so in the third (X)HTML tutorial we consider how we can make our page look more interesting by adding Images. Don’t forget that images that are part of your HTML should be a part of the page content, if the images are just decoration then [...]

Wednesday, August 24th, 2011

Headings

With the basic tags reguired to create our (X)HTML page in place the first thing we need to add into the content of our page is Headings.

Tuesday, August 23rd, 2011

Hello World

For those looking to write semantic (X)HTML I have a series of tutorials that go progressively through each of the different tags looking at what you should be using each for and what attributes you should be using with it. For the pirposes of this series we’re going to look at the XHTML in a [...]

Monday, August 22nd, 2011

Using Wide Monitors Effectively

Many computers today have a wide screen monitor attached (or sometimes two monitors configured to act as if they are a single double width monitor). For many applications the height is far more important than the width and so often this extra width is not required for individual applications. There are also many instances where [...]

Sunday, August 21st, 2011

Networks and Software

When you set up any server software to run on your network then you may need to reconsider how your network is configured. Router settings may need to be updated to open the ports that the software uses in order for it to be accessible to other computers. Networks and Software

Saturday, August 20th, 2011

Email Injection

Adding line feeds into a form field is one way crackers attempt to break into your script to apply their own mods. By testing for it and stripping them out of form fields where such characters are not valid input you can block that method of cracking your script. Email Injection