Archive for August, 2002

Putting XSL and PHP to work

We all know PHP is great for web development. We also know that XSLT is a great way of formatting, or tranforming, XML data. Combine these technologies and we have a very powerful toolkit in developing large scale web sites where content is clearly separated from logic and presentation. This article will show you how [...]

PHP

Remote scripting with javascript

I am currently working on a web based instant messenger client. In creating this I faced the problem of how to manipulate the web client from the server side. I didn’t want the client to reload every time it needed to check for status changes of contacts, new messages, send messages and what not. When [...]

Javascript

Quick and dirty XSLT tutorial

XSLT is a powerful way of getting data from an XML document into a HTML document, altough it is not the only use for it. This article will show you how to get started with XSLT using a simple example while explaining the basics of the language.
Explanation
The stylesheet above introduces many important concepts of XSLT [...]

PHP