Apache’s .htaccess file options makes it easy to have clean URLs, smart redirects, and even control SSL connections.  In this post, I am going to give you several tips on how you make your web applications smarter.  Note that your server must support mod_rewrite in order to use these tips.

Make Sure Everyone is on the [...]

Ok, so far a single entry can be viewed through the XSL template using the value-of command. The next step is to use the for-each command to loop through all of the groups found in the XML file.
<?xml version=”1.0″ encoding=”ISO-8859-1″?>
<xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform”>
<xsl:template match=”/”>
<html>
<body>
<table border=”1″>
<xsl:for-each select=”list_of_movies/movie“>
<tr>
<td> <xsl:value-of select=”title”/> </td>
<td> <xsl:value-of select=”age_group”/> </td>
<td> <xsl:value-of select=”comments”/> </td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
The first [...]

Tags: ,
6 visitors online now
6 guests, 0 members
Max visitors today: 6 at 06:44 pm GMT-3
This month: 31 at 03-10-2010 01:25 pm GMT-3
This year: 32 at 01-23-2010 07:03 pm GMT-3
All time: 63 at 11-14-2009 05:10 pm GMT-3