One of the biggest annoyances with CSS is the inability to apply more than one background image to a box. I’m currently working on a site that is in particular need of this. The only way to tackle it, at the moment, is to throw an ass-load of span or div tags in the mix …
Monthly Archives: March 2010
Easy Display Switch with CSS and jQuery
Today, I would like to go over a quick and simple way to allow your users to switch page layouts by using CSS and jQuery.
Celebrating / eortologio GREEK
#Celebrating their name’s day: feedUrl = “http://eortologio.gr/rss/si_el.xml” #today #feedUrl = “http://eortologio.gr/rss/si_av_el.xml” #today – tomorrow #feedUrl = “http://eortologio.gr/rss/si_av_me_el.xml” #today – tomorrow – the day after tomorrow
Quotes in mysql queries – security issue
Remember to check numeric data as well. If an application generates a query such as SELECT * FROM table WHERE ID=234 when a user enters the value 234,the user can enter the value 234 OR 1=1 to cause the application to generate the query SELECT * FROM table WHERE ID=234 OR 1=1.As a result, the …
Javascript Confirm Form Submission
Javascript Confirm Form Submission Many times you may wish to have the user confirm, before they process a form’s action. For instance, clicking the button may activate a deletion process which you wish to have the user confirm before proceeding. This code allows your users to confirm whether they wish to proceed when processing a …
htaccess – friendly url tips
suppose you want example #weeddingplans RewriteRule ^weddingplanners$ shop.php?sub=31&id=7 [L,S] RewriteCond %{REQUEST_URI} /shop.php [NC] RewriteCond %{QUERY_STRING} ^id=7&sub=31 RewriteRule (.*) http://www.wedstar.gr/weddingplanners? [R=301]