Scripts

PHP Payment Library for PayPal, Authorize.net and 2Checkout (2CO)

Feb 23, 2009Comments

Looking for a PHP Payment Library for three of the most popular payment gateways (PayPal, Authorize.net, and 2Checkout)?  This PHP library provides you with a similar way of using them.  Note: The libraries are for basic usage only and don’t contain options for recurring payments.
PHP Payment Library

TinyMCE Forum / TinyMCE 3.0 Alpha 1 Released

Nov 2, 2007Comments

I got my first look at TinyMCE 3.0 today and I’m highly impressed.  There’s times when certain dialogs didn’t load for me, but overall it’s a great improvement.  This new version is a complete rewrite of the TinmyMCE core.  Keep in mind that this is an Alpha version and there are several known issues with [...]

PHP Email Address Encoder

Apr 4, 2007Comments

This small PHP function will give you an easy way to encode any email address using Character Entities. Just supply the function call with an email address and get the encoded version returned. Most any browser will properly read and translate your email without a problem and without any further action on your [...]

Resize a BMP file with PHP and GD

Mar 27, 20071 comment so far

So I recently ran into an issue while trying to resize a BMP file with PHP. Fortunately, I came across this user created function in the imagecreate() section of the PHP website that made it easy as pie.
All you need to do is take the function there and do something like...
PLAIN TEXT
PHP:

$src = ImageCreateFromBMP($_FILES['upload_field']['tmp_name']);

imagejpeg($src, [...]

MiniAJAX - Collection of Free Ajax Scripts

Mar 1, 2007Comments

MiniAjax is a very nice collection of some great DHTML and Ajax scripts. It's not a huge collection but the pieces available are bits that would be useful across a number of websites.
Just a few of the scripts include:

Prototype Window which allows you to add a window in a HTML page.
Ajax Star Rating Bar [...]

CSS Tab Menu

Feb 20, 2007Comments

Koller Jürgen has given out a free download to easily create a CSS Tab Menu. (Take a look at the example image below)
You can set whether the tabs change on click or mouseover. The one thing I don't like is that everything is in one file. I would personally put the CSS in [...]