Minimum L-L-L.com Price

July 28th, 2008

I read in NamePros that minimum price for premium L-L-L.com is about $50. That’s good imho. I hope the price will continue to rise at constant rate. (the minimum price for non premium L-L-L is about $10-$15 at the moment).

Animated Captcha

July 27th, 2008

I’ve uploaded it somewhere, but here, you can get the official animated captcha :)

This one is the same script with the script in PlanetSourceCode.com, BUT, i have updated it with distortion etc (added on July 20ish 2008).

Captcha

Read the rest of this entry »

PHP Mailer Class

July 22nd, 2008

I got this mailer from PHP Classes. Now i want to share it with you.

If you use simple PHP mail() method, most e-mails will go to spam folder. Use this mailer class as the solution.

Usage :

<?php
$global_php_mailer = new PHPMailer();

$global_php_mailer->From = 'admin@webkamu.com';
$global_php_mailer->FromName = 'Web Kamu.com';
$global_php_mailer->AddAddress($to);// to
$global_php_mailer->AddReplyTo('admin@webkamu.com','Terserah, web kamu');

$global_php_mailer->WordWrap = 50;

$global_php_mailer->IsHTML(true);

$global_php_mailer->Subject = $subject;// subject
$global_php_mailer->Body    = $message;// message
$global_php_mailer->AltBody = $message;// message

$global_php_mailer->Send();
?>

Kudos to the original creator. Here’s the download link.

Available Domain Names #1

July 19th, 2008

Available domain names batch #1

Chameleona ,com
oLinker ,com
oLinkers ,com
PremScript(s) ,com (premium script)
PremSofts ,com (premium soft)
RedSyncs ,com
uInternets ,com (pretty cool)
WowFeature ,com
WowScriptz ,com
WowThats ,me (nice hack :p)
XataSoft ,com (sounds brandable)
XotoSoft ,com

Don’t forget to visit my domain name generator :D

CURL Class

July 16th, 2008

Here is my simple PHP cURL Class. I’ve put an example there. :)

Download.