php

hex to decimal in php

Php script to convert hex to decimal:

#!/usr/bin/php
<?php
if ($argc != 1)
{
        for ($i=1;$i<=($argc -1);$i++)

Php emailing script

I wrote this a couple of years backup, I put a lot of effort into it back then.
(it really seems kinda stupid now)

#!/usr/bin/php
<?php

Php md5 CL script

I use this script to generate md5 passwords

#!/usr/bin/php -q
<?php
if(isset($argv[1])){

echo "Pass in clear: $argv[1]\n";
echo "Pass md5: md5("$argv[1]")\n";
}
else {


Create your own youtube search engine

I have found a way to create a great youtube powered search engine using the youtube api and php.

You start off like trying to download a youtube video :)