Archive

Archive for the ‘Uncategorized’ Category

Md5: USCYBERCOM Seal Encryption

July 8th, 2010

Today I would like to show you how to properly use MD5 encryption within your pages. I am going to show you the basic use and will elaborate at a later time.

If you were to look at the United States Cyber Command seal you will find an MD5 hash written around the inner seal. It reads:

9ec4c12949a4f31474f299058ce2b22a

MD5 is a one way encryption that is used many times for password verification. Its a great way to store user passwords without having a plain text password easily available in case of malicious use. Since it cannot be decrypted the only way to know that it is in fact what you want is to encrypt the user’s input and match the both hash strings. There are other ways of making this more secure by enacting a salt and encrypting again.

Below is the example of the code above:

$str = md5(”USCYBERCOM plans, coordinates, integrates, synchronizes and conducts activities to: direct the operations and defense of specified Department of Defense information networks and; prepare to, and when directed, conduct full spectrum military cyberspace operations in order to enable actions in all domains, ensure US/Allied freedom of action in cyberspace and deny the same to our adversaries.”);
echo $str;

This will output:

9ec4c12949a4f31474f299058ce2b22a

That is the code written on the seal of the US Cyber Command.

Uncategorized

PHP Programmer: Freelance PHP Script

June 18th, 2010

Looking for a Freelance PHP Script? Check out my online resume here: PHP Programmer

If you’re interested in my experience please contact me at: Alex Irizarry

Uncategorized

How To Write A Link In PHP

June 18th, 2010

This is something that every PHP Programmer should be very aware of - the creation of links using PHP. To create a link in PHP is very simple. Here are a couple of ways to do this:

echo ‘<a href=”MYWEBSITE.COM”>My Website</a>’;

OR

echo “<a href=’MYWEBSITE.COM’>My Website</a>”;

OR

echo “<a href=\”MYWEBSITE.COM\”>My Website</a>”;

This is fairly basic but there are alot of hits to the website searching for this. So I hope this helps the PHP Programmer looking for this information.

Uncategorized

Automatic Data Backup Of Database

December 30th, 2008

As a PHP Programmer you should know the importance of having a database backup

Have you ever been typing something or finishing up a document and suddenly lost electricity? More than likely we did not save that document. It can be very frustrating to lose such documentation but you can always “just” start a new one. After all, it’s “just” a document…

Sure…. or You can use our automatic backup software to backup all of your databases or back them up on command. This script will send the SQL file to your email this way you have an extra database backup. You can later use these to restore database info or create new ones from saved files.

I am selling a script that will allow you to generate a data backup:

Click Below to purchase $7.95:

Automatic Database Backup

Don’t wait for your database to crash, back it up automatically or on demand with this simple to install PHP Script.

Uncategorized