Install Circle Chain on your iPhone for free and get the source code!! 645 downloads to go - last updated: April 21, 2012

Archive for the ‘Tutorials’ Category:

Check cookies with php

Emanuele Feronato on Jun 6, 2006 • 12 Comments

Today, an interesting script to check cookies with php. I had to used it because a bad configuration on the server turned off cookie settings, and I have on my server various shopping cart using cookies. You may get different results according to your register_globals settings. Remember to reload the script to have the correct [...]

Javascript chronometer/stopwatch

Emanuele Feronato on Jun 4, 2006 • 23 Comments

I needed a javascript chronometer/stopwatch to be inserted in a project, and I didn’t find anything on the web that fit my idea, so I created one almost from scratch, with all functions a chronometer should have, such as milliseconds measurement, start, stop, lap time and so on (well… that’s all). Time: Lap: Let’s see [...]

How to crop a Flash Movie

Emanuele Feronato on Jun 3, 2006 • 34 Comments

Sometimes we may need for some reason to “crop” a Flash Movie, but unlike Photoshop, there is not “crop” command. How can we do? Using the ‘size’ button, set a new height and width for the flash movie based on your flash design. At this point probably some of your movie images will be off [...]

Know which POST (or GET) method variables are available with php

Emanuele Feronato on Jun 1, 2006 • 3 Comments

Very easy script for a very important need: handle all variables coming with POST or GET methods. With this script you can manage all data coming for every kind of form. 1 2 3 4 5 <?php foreach ($_POST as $varname => $varvalue) { echo "$varname -> $varvalue<br>"; } ?> This script prints all passed [...]

Determine connection speed with php

Emanuele Feronato on May 31, 2006 • 27 Comments

One of the hardest script you can find in internet is the one that determines connection speed of a surfer visiting our site. From today it’s not anymore a problem (even if nobody had nightmares before…) because we will make a php script in order to fill such lack. Let’s start coding…

WordPress in two (or more) languages

Emanuele Feronato on May 26, 2006 • 12 Comments

Browsing the internet, I noticed the necessity to have a blog in two or more languages. It’s a necessity I’m having too, so the first thing I did was a search into the official WordPress plugin repository, convinced that the solution to my problem was a few clicks away. I was much, much wrong. Anyway [...]

Page 4 of 41234