Archive for February, 2009

Vector based Worldmap for free

Saturday, February 21st, 2009 | Permalink

For a current project we are using some geotargeting stuff and want to map these geodata to a worldmap.
If you need to find the right position with longitude and latitude on a map, you need a map that is absolutly correct. Otherwise you will have the problem that some places are directly in the water. BAD!
So I looked around and found this post about free vector worldmaps
On additional benefit, you can build zoomable maps in flash with these kind of maps.

Opensource PHP Wysiwyg online editor

Sunday, February 8th, 2009 | Permalink

I recently programmed a MiniCMS for a customer.
To make it easier for the customer to edit content, I looked for a opensource wysiwyg editor and I found spaw2.
Spaw2 has really everything you expect from a wysiwyg editor including fileupload.
It’s really easy to integrate.
Just include the library in you php file, start a new instant of the class and show the editor.

include("spaw2/spaw.inc.php");
$spaw = new SpawEditor("content", $content);

$spaw->show();


That’s it!