PDA

View Full Version : Kilza Commissions! Graphics + Programming


Kilza
12-27-2007, 09:53 PM
http://i260.photobucket.com/albums/ii16/kilzagraphics/sig.jpg

-------------------Graphics-------------------

Prices

Simple Layout: $12 USD
Simple Layout Coded: $5 USD
Advanced Layout: $18 USD
Advanced Layout Coded: Depends on complexity
Banner: $2
Banner Animated: $3
Avatar: $0.50
Avatar Animated: $1
Signature: $1.50
Signature Animated: $2

Discounts
You can only collect one bonus at a time!

First Time Buyer Discount: As a first time buyer you will get $5 off of your first purchase as long as you make a purchase of $15 or more!

Avatar Discount:
- If you order 10 non-animated avatars you can get 5 non-animated avatars free.
- If you order 15 animated avatars you can get 2 animated avatars free!

Starter Pack: (Vaild one time only for each customer)
- 5 non-animated avatars
- 2 animated avatars
- 2 banners
- Simple Layout(Coded)
$16.99

Portfolio

Simple Layouts:

Tamoki
Link Here (http://i260.photobucket.com/albums/ii16/kilzagraphics/layouts/tamoki.jpg)

Non-Animated Avatars:

Ichumon
http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/ichumon/polasisav.jpg http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/ichumon/dragoraav.jpg http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/ichumon/ichudefault.jpg
Sorpets
http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/sorpets/beeav.jpg http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/sorpets/dixunav.jpg

Animated-Avatars:

Sorpets
http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/sorpets/grelmanimated.gif http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/sorpets/chanukanimated.gif http://i260.photobucket.com/albums/ii16/kilzagraphics/avatars/sorpets/beeanimated.gif

I am stilll building my portfolio so be patient if you want to see more examples. Although I do have some more graphic examples if needed.

-------------------Programming-------------------

All my scripts come programming in PHP OOP(Object-Oriented-Programming). I have been programming for over a year now in PHP, MySQL, HTML, and CSS.

Prices

Example Scripts:
- Register, Login, Logout - $20
- Create Pet(20 pets per page?), Add Pet, Edit Pet, My Pets(Display stats for each of your pets) - $25
- Shops, Inventory(very basic no feeding or anything like that. You can asked for a more advanced inventory), Add Item, Edit Item - $30
- News(display news(10 news posts per page?), add news, edit news) - $20
- Guess That Number(PHP game) - $8
- Random Points - $4
You can order custom scripts. You can send payment after the script(s) are complete.


Code Example:(This example hasn't been tested)

<?php

$_GET = array_map('stripslashes', $_GET);
$_POST = array_map('stripslashes', $_POST);
$_COOKIE = array_map('stripslashes', $_COOKIE);
$_GET = array_map('mysql_real_escape_string', $_GET);
$_POST = array_map('mysql_real_escape_string', $_POST);
$_COOKIE = array_map('mysql_real_escape_string', $_COOKIE);

$username = $_SESSION['username'];

class db{

function connect(){

mysql_connect("localhost", "USER", "PASS") or die(mysql_error());
mysql_select_db("DATABASE") or die(mysql_error());

}

function query($input_query){

mysql_query($query) or die(mysql_error());

}

}

$db = new db;
$db->connect();

$select_users = $db->query("SELECT * FROM users");
$users = mysql_num_rows($select_users);

$select_user_info = $db->query("SELECT * FROM users WHERE username='$username'");
$user_info = mysql_fetch_array($select_user_info);

$user_points = $user_info['points'];

?>


-------------------Contact Info-------------------
Private Message me here.
MSN: b-town_boxer@hotmail.com
Paypal: paypal@sorpets.com

Jinteii
12-27-2007, 10:07 PM
If my math is correct, the starter pack isn't a discount... it's actually more expensive than if you order it's contents normally. (they'd be $19.50)

Also, I'm guessing that a coded simple layout would cost $12.00, and a simple layout alone would be $5.00... you got those mixed up.

But otherwise, good luck with commissions. :]

Kilza
12-27-2007, 10:50 PM
Thanks I fixed the discount.

Andrew
12-28-2007, 11:57 AM
I think if the user wants the news script it should come with delete also for that price. Also, why isn't your script example tested? You should test it ;)

Kilza
12-28-2007, 01:16 PM
I think if the user wants the news script it should come with delete also for that price. Also, why isn't your script example tested? You should test it ;)

The script example isn't tested because I just wrote it up quick for a code example.