Showing posts with label Photo gallery. Show all posts
Showing posts with label Photo gallery. Show all posts

Friday, December 7, 2007

js: slideshow. Highslide :) tag: lightbox: thickbox: a-r-t: work:
http://vikjavev.no/highslide/

php: image unsharp mask for PHP
http://vikjavev.no/computing/ump.php?id=306

silverstripe: Menus aren't displayed
>> check if the newly created Controller has extended the Page_controller.
e.g: class HomePage_Controller extends Page_Controller

Sapphire
js: TinyMCE2
js: Multifile
js: SWFUpload

Wednesday, December 5, 2007

SQL: Multiple Delete

The Definitive Open-souce web photo gallery
http://www.plogger.org/

sql: mySQL: using: Multiple Delete: Deleting records from multiple tables.
DELETE t1,t2 FROM t1,t2,t3 WHERE t1.id=t2.id AND t2.id=t3.id;

Or:

DELETE FROM t1,t2 USING t1,t2,t3 WHERE t1.id=t2.id AND t2.id=t3.id;