Saturday, November 22, 2008
Thursday, November 20, 2008
CMS Demos
Wordpress: http://www.mycenturyweb.com/
Commercial use of Wordpress: http://www.inhabitny.com/blog/
Joomla: http://www.mycenturyweb.com/joomla/
Xoops: http://www.mycenturyweb.com/xoops/
Drupal: http://www.mycenturyweb.com/drupal/
ZenCart: http://www.mycenturyweb.com/zencart/
Monday, November 17, 2008
Tiles
Tiles have been used for background texture (think parchment paper), but they can also be used for CSS rollovers.
A simple CSS rollover using a 2px wide vertical tile:
#menuTop a{
padding:2px;
color:#000;
background-image:url('img/menuTile.jpg') repeat-x;
text-decoration:none;
}
#menuTop a:hover{
background-image:url('img/menuOverTile.jpg') repeat-x;
color:#cc0000;
}
And of course a tile can be used for a gradient effect in the page top:
#pgTop{
border-bottom:1px solid #cc0000;
background-image:url('img/pgTopTile.jpg');
}
Thursday, November 13, 2008
Friday, November 7, 2008
Hacker attacks
http://en.wikipedia.org/wiki/SQL_injection
http://www.unixwiz.net/techtips/sql-injection.html
these links explain this type of attack, which can occur when users enter info into a form text box.