+40 745 232 788

Online Solutions Development Blog   |  

RSS

Monthly Archives: December 2010

posted by ,
Categories: JavaScript
Tags , ,

If you want to place an html element over another one using javascript for some reason here you will find the solution. Why you might want to do this? Maybe you want to place an “online now” stamp on the corner of the user avatar or an “on sale” stamp on some of the products …

posted by ,
Categories: PHP
Tags , , ,

After my first post about posting on facebook wall had some feedback I decided to create another tutorial for twitter since the system is very similar. Twitter also uses oauth, so you will need to ask for the user’s permission in order to update his status (once again the “old” methods that allowed you to …

This will be a very simple plugin for wordpress blogs that will allow users to save a file on their server just by providing the url of that file. Let’s say you see a nice picture on another site and you want to save it on your server and use it in one of your …

Getting the needed permissions and writing on an user’s facebook wall seems something complicated, but once you get some basic things you will be able to develop applications that send updates to facebook accounts. In order to be able to do this the account owner must give you access. If you think that by knowing …

posted by ,
Categories: PHP
Tags , , ,

Below you can find a simple php script that blocks ip addresses. It uses a function (called iplong) that converts the standard IPv4 address to a long int value and the main function (ban) that checks if a provided ip can be found in a list of blocked addresses. Hope you will find this useful. …