Currently Browsing: Web
Simple SEO tips by Google

If you are new to Search Engine Optimization, you can read what Google engineers suggests you to do, to improve your website ranking. The guide is made for all webmasters of all levels and for sites of any kind, so it will definitely fit your case. Read more on their... 

Go ahead and Fashion Your Firefox

As you probably know, Firefox add-ons are a really cool thing. There are over 5,000 different add-ons that allow you to do everything from online shopping, listen to music, stay connected with your social network, and more, all from the comfort of your very own Firefox... 

WordPress 2.7 Beta 1

I have just upgraded the blog to the new beta version of WordPress. The final release was said to be out the 10. of november, but instead they are going to make a release candidate for that date. This version has got a new design, a whole new dashboard and a sidebar... 

Format file sizes with PHP

A simple script that formats the number ob bytes of a file to kb, mb, gb or tb. function mksize($bytes) { if ($bytes < 1000 * 1024) return number_format($bytes / 1024, 2) . " KB"; elseif ($bytes < 1000 * 1048576) return number_format($bytes /... 

Email validation with PHP

This script is more accurate then a normal validation script. After checking if the email is correctly typed in (@) it checks the domain validity by checking it’s dns records (MX, A and CNAME). A piece of the regex is cut because of my sidebar but if you copy/paste... 

The best PHP IDE?

I used UltraEdit and then changed to Notepad++ but decided to start using something more specific for php. I found a site that reviews quite a lot of them, PHP editors review. I downloaded PHP Eclipse (you need Eclipse and then go to Help – Software updates –... 

Mootools image gallery scripts

(E)2 Photo Gallery (E)2 Photo Gallery is a open source gallery built with Mootools Javascript Library the compact, modular, Object-Oriented javascript framework. Designed to allow you to upload your photos to a desired folder, tell the (E)2 Photo Gallery what folder... 

Write less PHP code

I found a funny but working way to write less php and more html code.. Instead of writing: < ?php echo '< form action="" method="post">'; echo '< input type="text" name="something">'; echo... 

Get torrent data with PHP

To use this code you first need to include a file with the benc, bdec and hex2bin functions. You can get these functions from here: functions.phps. &lt;?php include 'functions.php'; $torrent_data = bdec(file_get_contents('yourfile.torrent')); To... 

Create an array for a tag cloud in PHP

Everyone tells us how to create a tag cloud with an array.. but how to actually create the array with the data that we fetch from our database? This is how I do it. The table we are working in is “pictures” and the field with the tags is “tags“.... 

« Previous Entries Next Entries »