AJAX Star Rating Bar

For rating i choose this script, from masugadesign.com, here we are the description and the full url.

Unobtrusive AJAX Star Rating Bar

Unobtrusive AJAX Rating Script

What It Is

This is a rating bar script done with PHP and mySQL that allows users to rate things like can be done on Netflix or Amazon, all web 2.0-like with no page refresh. It is a major improvement on the previous version because it is now unobtrusive, meaning that if Javascript is off it will still work (although the page will refresh). You can also set the number of rating units you want to use (i.e. 4 stars, 5 stars, or 10 stars) on a rater to rater basis (see samples below or read the docs). A few other changes were made as well - see the docs for details. Note that this script isn't tied to any specific system (such as WordPress), so you should be able to adapt it to your situation without too much trouble.

http://www.masugadesign.com/the-lab/scripts/
unobtrusive-ajax-star-rating-bar/

Show users IP in a graphic - PHP Script

From: http://www.allscoop.com/phpcode.php

$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);

imagefill($img_number,0,0,$backcolor);
$number = " Your IP is $_SERVER[REMOTE_ADDR]";

Imagestring($img_number,10,5,5,$number,$textcolor);

header("Content-type: image/jpeg");
imagejpeg($img_number);



Simple CAPTCHA

Simple CAPTCHA, easy and ready to use.

Screen shot:




Source is on: http://www.nusansifor.com/f/showthread.php?t=57
just insertt the class, and upload the font, the font you can download from there.

Pagination Version 2 (ready to use PHP MySQL)

Very easy to use simply add the class, and edit setting:

$page = $_REQUEST["page"];
$alamat_pag = "http://elkaff.com/?m=Alumni"; // Full adress your PHP script
$adjacents = 3; // do not change if you do not know
$tabel="sample_tabel"; // table database form MySQL
$where=""; // where condition, optional
$order="ORDER BY `date` DESC, `name`"; // order condition, optional
$limit = 10; // set limit per page
include "pagination.php"; // include the class
$no=$start+1; // the number, if you want it to diplay, optional
while($ro = mysql_fetch_array($portfolio)) {
echo
$no." ";
echo
$ro[nama]."
"
;
}

echo
"Total: $total_pages
"
;
echo
$pagination;


The code is on: http://www.nusansifor.com/f/showthread.php?t=101

[AJAX] - File Upload with PHP, Javascript & iFrame

Well, this is my choise for simple uploading system:

http://www.chronosight.net/view/2006/04/
465-asynchronous-file-upload-with-php-javascript-iframe.html

take a look...