Archive

Posts Tagged ‘the item’

Ebay Monitor 2

July 24th, 2011 Comments off

Desktop program using Ebays API.
Searches ebay buy it now listings by keywords (exact words,any order).
Limits searches by price range, ebay category and excluded words.
When program finds an item that matches the program will make a sound and have a pop up appear on the desktop with the item number. The pop up will also include the item title and price and a link to the item which will direct me to the item on ebay USA or ebay Canada (my choice). The program will search constantly.

Ebay Monitor

July 12th, 2011 Comments off

Desktop program.
Searches ebay buy it now listings by keywords (exact words,any order).
Limits searches by price range, ebay category and excluded words.
When program finds an item that matches the program will make a sound and have a pop up appear on the desktop with the item number. The pop up will also include the item title and price and a link to the item which will direct me to the item on ebay USA or ebay Canada (my choice). The program will search constantly.

Automate Buy Button On A Website 2

May 29th, 2011 Comments off

There is a website called who offer discount items every Tuesday, and Thursday from 11am to 4pm PST. it’s called outrageous deal. for now I setup my firefox to refresh every seconds and when the item is posted I buy it, but it doesn’t work all the time, the item can be posted while my webpage is refreshing, and somebody else get the deal. I am wondering there is something that can be done, as soon as the item is posted (maybe based on Item number and price) it trigger the buy now button.

Please contact me for more information.
Thank you.

Automate Buy Button On A Website

May 5th, 2011 Comments off

There is a website called who offer discount items every Tuesday, and Thursday from 11am to 4pm PST. it’s called outrageous deal. for now I setup my firefox to refresh every seconds and when the item is posted I buy it, but it doesn’t work all the time, the item can be posted while my webpage is refreshing, and somebody else get the deal. I am wondering there is something that can be done, as soon as the item is posted (maybe based on Item number and price) it trigger the buy now button.

Please contact me for more information.
Thank you.

Small K2 Css Job

October 19th, 2009 Comments off

Hi,

I’m using K2 for Joomla and currently the item image is above the item fields in the category view.

I need the item image moved across to the left with the rest of the fields next to it on the right in the category view.

I’ve attached images to explain better.

Priority will be given to those who can do this today.

Cheers,

J.

Spreadshirt Alternative

October 13th, 2009 Comments off

Hi,

I would like a product similar to spreadshirt.com’s custom t-shirt designer. This would be for a different type of clothing item but would work in a similar manner. There would be options to change the colour of specific sections of the item and upload pictures to pre-defined areas of the item. The price of the product would vary according to how many customizations are added. I would also like to link this in to Prestashop so that when you press ‘add to cart’ it would add the item to a prestashop cart. I think the designer would be a separate application with just a special link to hidden prestashop products of the appropriate price and it would add customization id to the product that comes from the design application. If you cannot do the Prestashop integration it doesn’t matter, I can do this as a separate project later.

Dubli Clone

August 24th, 2009 Comments off

Project needs to be a fully customisable clone of dubli zero auction. where bid reveals the current value of the item for a cost, and this also reduces the overall value of the item until either customer buys at current value or item rechease a zero value and the current bidder gets the item for $0. bids are purchased through profile in different cusomisable packages, with good ranges of payment options, credit cards, currencies, bank deposits etc Good customer profile layouts, and good ranges in cusomisable catagories and item listings etc

Simple Binary Tree Inventory

August 12th, 2009 Comments off

You are to write a program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

CAN I HAVE BEFOR AUGUST 15,2009
THANKS

X-cart Modifications Needed

August 11th, 2009 Comments off

I have X-Cart Pro and will be allowing multiple providers to sell their items on my site. Please make your bids but in the description area or via PM, please indicate the charge for each modification seperately.

For general information about this Shopping Cart Software, please go here: http://www.x-cart.com/mall_solution.html

FYI: The providers will only be able to sell items that are currently available on my site – they cannot ‘add’ new products to MY site.

I need the following modifications:

(1). I would like each provider (seller) to be able to indicate the ‘condition’ of the item they are selling (Mint, Good, Fair, Poor), as well as, a brief description of the item. A good example would be AdultDVDMarketPlace.com

(2). I would like the item that any provider(s) (sellers) are selling to appear below that item on my site (and it’s description) in a list (lowest price to highest price) with an ‘Add To Cart’ button next to each provider (seller). A good example would be AdultDVDMarketPlace.com

(3). I would like a customer to be able to leave feedback (both STARS and COMMENTS) for the provider (seller) for each item that was purchased. I would like the STARS (rating) visible next to each of the provider(s) (sellers) listings. I would like the provider (seller) to be able to respond (if they wish to) to the feedback left. A good example would be AdultDVDMarketPlace.com

(4). I would like a provider (seller) to be able to put ALL of their items on hold (pause) should they need to go on vacation or are unable to ship their orders temporarily.

All of the modifications that I am requesting can be viewed on AdultDVDMarketPlace.com (except number 4) by clicking on any product on that site (Please Note that the ‘sample’ site is an adult product site).

I may require more modifications and any suggestions are appreciated.

Programming Project 1248975251

July 30th, 2009 Comments off

Part 1 – Create a Java application that displays the product number, the name of the product, the number of units in stock, the price of each unit, and the value of the Inventory (the number of units in stock multiplied by the price of each unit).

Part 2 – Modify the Inventory Program so the application can handle multiple items. Use an array to store the items. The output should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the
price of each unit, and the value of the Inventory of that product. In addition, the output should display the value of the entire Inventory.

Binary Search Tree

July 23rd, 2009 Comments off

(Need by Friday 10pm if possible)

The Problem
You are to write a program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

in this order, then the structure of the binary tree would be as follows:

soap 2.95
total: 11.90
/
raisins 2.00 tea 1.95
total: 7.00 total 1.95
/
jellybeans 5.00
total: 5.00

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

Out Of Stock Email

July 23rd, 2009 Comments off

Some of our customers would like to get an email notification when an item is back in stock and available for purchase. We need a means for them to be able to enter their email address and the program capture the item information they are interested in and retain their email address information. Once we update our inventory and the item reflects available for purchase an email would be automatically generated to the customer advising the item is now available for purchase. The email should say

Php Mysql Game Trading Website

July 23rd, 2009 Comments off

IMPORTANT:
Serious bidders only. Please read my terms CAREFULLY. I will not accept bogus bids or any blind biddings. I will NOT hesitate to leave negative feedbacks.

Brief of Project details:

To create a PHP and MySQL based trading website for Facebook Pet Society where users will sign up and list their items for sale via the website. The game items that they sell well be selected via our item database. A simple admin panel is needed to manage the trade listing and user accounts.

Website has 2 major pages:

1. Item database page which list the item details. The item database uses search and filter method to list the items

2. Item trading page which lets users sign up an account and list the items they want to sell. Users will select the item for sale base on our item database item name. There will be a rating system for buyer and seller to reward each other. Maximum positive rating and maximum negative rating per day is imposed to prevent abuse. Slight Ajax or tooltip will be used to bring out a pop out to reveal seller contact details

Admin Panel:

- There is to be a simple admin panel to easily mass upload the item data to either INSERT or UPDATE (excel or csv format)
- Simple tools to ban user, remove trade listing

Terms:
1. Project time completion: 14 absolute days maximum
2. Detailed project as per .gif images and .txt file
3. 20% Escrow upon start. Escrow released when the 2 major pages are fully done up. 80% Paypal payment only AFTER full project completion
4. To work directly on my web server

Inventory.c

July 22nd, 2009 Comments off

Project due to me by 6 p.m. EST US time on Jul-22-09.
You are to write a C program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

Simple Binary Tree Inventory

July 21st, 2009 Comments off

You are to write a program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

Binary Searchtree Problem In C

July 20th, 2009 Comments off

You are to write a program that creates and maintains a binary search tree of items in a super market. Each item has a name and a value. All item names will be lowercase alphabetic strings of less than 30 letters. All values will be positive real numbers representing prices. Also, for each node in the tree, you are to maintain the value of all of the items in that subtree. Your tree should be “sorted” based on alphabetical ordering of the item names as determined by strcmp. Your program must allow the user to do the following:

1) Add an item to the inventory
2) Delete an item from the inventory
3) Print out all of the items in the inventory in alphabetical order.
4) Print out the value of all items underneath the subtree of a given item.

For example, if the user adds these items:

a) “soap”, $2.95
b) “raisins”, $2.00
c) “jellybeans”, $5.00
d) “tea”, $1.95

in this order, then the structure of the binary tree would be as follows:

soap 2.95
total: 11.90
/
raisins 2.00 tea 1.95
total: 7.00 total 1.95
/
jellybeans 5.00
total: 5.00

Input File Specification (inventory.txt)
The first line of the input file will contain a single positive integer, n, representing the number of commands to execute. The following n lines will contain one command each, in the other they are to be executed.

The first number of each of these lines will be either 1, 2, 3 or 4, to signify the choices listed above.

If the choice is 1, it will be followed by the name of the item added and its price (as a number), both separated by spaces.

If the choice is 2, it will be followed by the name of the item to be deleted.

Choice 3 will be on a line by itself.

Choice 4 will be followed by a single string storing an item.

Output Specification
For each command, your program should provide some output.
The output provided by each command should be separated by a blank line.

For choice 1, if the item to be added is NOT in the tree, output a line with the following format:

item has been added to the stock.

where item is the name of the item added. If the item is ALREADY in the tree, output a line with the following format:

Sorry, item is already in stock. No changes made.

For choice 2, if the item to be deleted is IN the tree and is successfully deleted, output a line with the following format:

item has been deleted from the stock.

If the item is NOT in the tree, then output a line with the following format:

Sorry, item couldn’t be deleted because it’s not in stock.

For choice 3, the first line should read:

Here is a list of the items in stock:

Each following line should have information about one item and the list should be in alphabetical order by item name. Here is the format for one of these lines:

item $price

The price should be printed out to two decimal places exactly.

Finally, for choice 4, print out the sum of the values of all the items in the subtree rooted by the designated item. If this item is NOT in the tree, $0.00 should be printed out. Here is the format for the output for this option.

The value of all the items underneath item is $price.

Implementation Restrictions
You must store the data in nodes of a binary tree. Each binary tree node must store 3 pieces of information: the name of the item, its price, and the sum of the prices of all the items in its subtree.

Sample Input File
11
2 soap
1 soap 2.95
1 raisins 2.00
1 jellybeans 5.00
1 tea 1.95
4 raisins
3
2 raisins
4 soap
4 cereal
1 soap 3.50

Sample Output
Sorry, soap couldn’t be deleted because it’s not in stock.

soap has been added to the stock.

raisins has been added to the stock.

jellybeans has been added to the stock.

tea has been added to the stock.

The value of all the items underneath raisins is $7.00.

Here is a list of the items in stock:
jellybeans $5.00
raisins $2.00
soap $2.95
tea $1.95

raisins has been deleted from the stock.

The value of all the items underneath soap is $9.90.

The value of all the items underneath cereal is $0.00.

Sorry, soap is already in stock. No changes made.

PS: I may not answer right away to you bids, so after you bid please allow some time for answer.

Php Mysql Game Trading Website

July 15th, 2009 Comments off

Brief of Project details:

To create a PHP and MySQL based trading website for Facebook Pet Society where users will sign up and list their items for sale via the website. The game items that they sell well be selected via our item database. A simple admin panel is needed to manage the trade listing and user accounts.

Website has 2 major pages:

1. Item database page which list the item details. The item database uses search and filter method to list the items

2. Item trading page which lets users sign up an account and list the items they want to sell. Users will select the item for sale base on our item database item name. There will be a rating system for buyer and seller to reward each other. Maximum positive rating and maximum negative rating per day is imposed to prevent abuse. Slight Ajax or tooltip will be used to bring out a pop out to reveal seller contact details

Admin Panel:

- There is to be a simple admin panel to easily mass upload the item data to either INSERT or UPDATE (excel or csv format)
- Simple tools to ban user, remove trade listing

Terms:
Project time completion: 14 absolute days maximum
Detailed project as per .gif images and .txt file
FULL Paypal payment only upon completion
To work directly on our site

Inventory Program

July 13th, 2009 Comments off

Part 1.
Choose a product that lends itself to an inventory (for example, products at your workplace, office supplies, music CDs, DVD movies, or software).
* Create a product class that holds the item number, the name of the product, the number of units in stock, and the price of each unit. *Create a Java application that displays the product number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory (the number of units in stock multiplied by the price of each unit). Pay attention to the good programming practices in the text to ensure your source code is readable and well documented.
* Post as an attachment in java format.

Part 2.
Modify the Inventory Program so the application can handle multiple items. Use an array to store the items. The output should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory of that product. In addition, the output should display the value of the entire inventory.
* Create a method to calculate the value of the entire inventory.
* Create another method to sort the array items by the name of the product.
* Post as an attachment in java format.

Part 3.
Modify the Inventory Program by creating a subclass of the product class that uses one additional unique feature of the product you chose (for the DVDs subclass, you could use movie title, for example). In the subclass, create a method to calculate the value of the inventory of a product with the same name as the method previously created for the product class. The subclass method should also add a 5% restocking fee to the value of the inventory of that product.
* Modify the output to display this additional feature you have chosen and the restocking fee.
* Post as an attachment in java format.

Part 4.
Modify the Inventory Program to use a GUI. The GUI should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory of that product. In addition, the GUI should display the value of the entire inventory, the additional attribute, and the restocking fee.
* Post as an attachment in java format.

Part 5.
Modify the Inventory Program by adding a button to the GUI that allows the user to move to the first item, the previous item, the next item, and the last item in the inventory. If the first item is displayed and the user clicks on the Previous button, the last item should display. If the last item is displayed and the user clicks on the Next button, the first item should display.
* Add a company logo to the GUI using Java graphics classes.
* Post as an attachment in java format.

Part 6.
Modify the Inventory Program to include an Add button, a Delete button, and a Modify button on the GUI. These buttons should allow the user to perform the corresponding actions on the item name, the number of units in stock, and the price of each unit. An item added to the inventory should have an item number one more than the previous last item.
* Add a Save button to the GUI that saves the inventory to a C:datainventory.dat file.
* Use exception handling to create the directory and file if necessary.
* Add a search button to the GUI that allows the user to search for an item in the inventory by the product name. If the product is not found, the GUI should display an appropriate message. If the product is found, the GUI should display that product

Php Mysql Game Trading Website

July 3rd, 2009 Comments off

Brief of Project details:

To create a PHP and MySQL based trading website for Facebook Pet Society where users will sign up and list their items for sale via the website. The game items that they sell well be selected via our item database. A simple admin panel is needed to manage the trade listing and user accounts.

Website has 2 major pages:

1. Item database page which list the item details. The item database uses search and filter method to list the items

2. Item trading page which lets users sign up an account and list the items they want to sell. Users will select the item for sale base on our item database item name. There will be a rating system for buyer and seller to reward each other. Maximum positive rating and maximum negative rating per day is imposed to prevent abuse. Slight Ajax or tooltip will be used to bring out a pop out to reveal seller contact details

Admin Panel:

- There is to be a simple admin panel to easily mass upload the item data to either INSERT or UPDATE (excel or csv format)
- Simple tools to ban user, remove trade listing

Terms:
Project time completion: 14 absolute days maximum
Detailed project as per .gif images and .txt file
FULL Paypal payment only upon completion
To work directly on site

Php Mysql Game Trading Website

June 14th, 2009 Comments off

Brief of Project details:

To create a PHP and MySQL based trading website for Facebook Pet Society where users will sign up and list their items for sale via the website. The game items that they sell well be selected via our item database. A simple admin panel is needed to manage the trade listing and user accounts.

Website has 2 major pages:

1. Item database page which list the item details. The item database uses search and filter method to list the items

2. Item trading page which lets users sign up an account and list the items they want to sell. Users will select the item for sale base on our item database item name. There will be a rating system for buyer and seller to reward each other. Maximum positive rating and maximum negative rating per day is imposed to prevent abuse. Slight Ajax or tooltip will be used to bring out a pop out to reveal seller contact details

Admin Panel:

- There is to be a simple admin panel to easily mass upload the item data to either INSERT or UPDATE (excel or csv format)
- Simple tools to ban user, remove trade listing

Terms:
Project time completion: 14 days maximum
Detailed project as per .gif images and .txt file
FULL Paypal payment only upon completion
To work directly on site

Ajax/jquery Invetory Checker

June 4th, 2009 Comments off

I need a php script that uses ajax/jquery to dynamically check the inventory of an item when options are chosen and if the item is not in stock does not allow it to be purchased. The inventory check will use a simple existing php function I have already built. All you need to do is code the ajax/jquery part and intergrate it into our existing site.

You can view our item page here: http://www.clarityproductions.com/cc/tlsbeta/belts/270.html

Notice this options offered are Size, Color, and Buckle option. The full item number is made up of the base item number 270
270-SIZE-COLOR-BUCKLE (example: 270-BLA-32-NO). Once a customer selects a size and color if there is no inventory of the item available the qty, and add to cart section hide and replace with a message that says the item is not available. This should work for any item in our database following the logic of the item number base, plus option codes.

Please Note: We must use JQUERY, VALID XHTML, and php only. Ajax is also allowed if needed.

New Php Script

May 12th, 2009 Comments off

I need a php script built and installed that runs on a MYSQL Database.

This script is for products (or items is actually what we will call them). These are not going to be sold so it’s NOT going to have any shopping cart function at all. It is simply for displaying products.

The script location should be /products/

The scripts admin which does not need password protection because I will just password protect the directory should be located in /products/admin

Please set this up so that we can change “products” folder name without having to change anything in the script for it to work. Incase we need this script for something else.

ADMIN SECTION

This product (item) script will need to have an admin panel that allows us to add, edit, and remove categories, and add edit and remove products. It will also need to be able to add, edit category images for

the categories.. If a category image is not assigned, then it would show the first product of that category as the category image.

ADD and Edit a category: This will have the following fields: Category name (text field), category description (text box) and a browse image field for a category image. When editing a category it would have drop down displaying the current categories so that we can choose one to edit.

Delete a category: Simply a dropdown to select a category to delete.. If a category has products in it it will warn “are you sure since you have existing items in this category” if you click yes it would not only delete that category but alow the products that existed in that category.

Add and edit an Item (aka product): This would have the following fields. A image field for the script to create a thumbnail image, A title field (text field), a short description field (a text box), and a

WYSIWYG box so that we can create html stuff and also have a html view so we could copy and paste code if we need to. The WYSIWYG needs to have all the buttons to create and format tables, text, add photos, links etc.. When adding photos it needs to be able to except all standard image types (jpeg, gif, png etc..). But we need a feature built in so that we can use photos that are on our own computer no just hosted images.. So if we choose a photo from our computer it would upload it and compress automatically and add it to the page.

We also need seperate 12 browse image fields for this. These photos would also be able to be taken off our own computer not remote linking. It will need to be able to compress these images as well.

ALL IMAGES MUST COMPRESS AUTOMATICAlly!

It would also have an order feature that allows them to sort the items in the order they want. Just a drop down on the add and edit item pages in the admin that says order for this item: “at the top” then “below product 1″ “below product 2″ etc.. or whatever the product names are.

When editing a item it would have drop down displaying the current categories so that we can choose one to edit

USER SECTION:
The main page will show all the categories on the page ( 4 per row) The thumbnail and the cateogory name below it. When the user clicks a category’s title or thumbnail it takes them to category’s list of items. This would display them down the page 20 items per page before going to page 2 and 3 and so on… This page would show a thumbnail (the thumbnail photo) the item name, the short description and a link the says “click here for more information”. The thumbnail and the items title would also be a link to this “more information page”.

The more information page is the page there the WYSIWYG stuff will be displayed. The “more information” page will show the Item’s title at the

top of the page, the WYSIWYG stuff added for that product, then below that the thumbnails for the 12 photos (if added). If they click on a thumbnail it will pop up in a new popup window with next and previous buttons so they can scan through and see all the enlarged photos. Below that it will have a link back to the category. It will say “BACK TO THE [CATEGORY NAME].

TITLE TAGS: We want to make this so that the title tags reflect what the category is.. On the more information page we want the title tag to display what the item’s title is.

If there is no products in a category it will say show a thumbnail saying “image not available”. Likewise if there is new thumbnail added in the thumbnail image field for a product it would also so “no image available”

That’s basically it.. There is now design needed.. just make sure you use a .css file so I can change the formatting.. So I can set the style on everything except for the WYSIWYG stuff which will display

however we create it. This needs to be built so that I can edit things myself. Please place a top.php and bottom.php page include on the pages so that I can easily add a design afterwards. Please don’t

bother bidding if you are a beginner programmer. I want to make sure I get a bug free script and I want you to be able to test things so I don’t don’t have to spend a lot of time checking your work.

I want to work with someone who can stays in communication about the project and uses msn messenger so that we can keep in contact.

Big Budget B2b Ecommerce Site

May 9th, 2009 Comments off

I am looking to design and build a complete package website from scratch.

PLEASE GO THROUGH ALL THE REFERENCE SITES!!! THEY ARE THERE FOR A REASON!

Type of Business
We are a wholesaler of promotional products (also known as advertising specialties/give-aways/freebies). The business model is B2B. We sell products that can be put a corporate logo/personalization/customized message on to the item via various decoration methods such as embossing, debossing, silk-screening, embroidery, pad-printing, embroidery, laser engraving, etc. Some of our products are key chains, pens, travel mugs, and bags. A complete list of products will be provided after the bid closes.

To give you a sense of what we sell, here are some examples:
www.sunscopeusa.com
www.swedausa.com
www.tagmaster.net

1. Interactive Virtual Proof Designer (ideally flash based)
Please see: http://www.starline.com/default.aspx?pg=qphowto (introduction)
Live demo: http://www.starlinequickpick.com/default.aspx?pid=pf52&from=us&imp=y
I would like a similar or cloned exactly tool. The interactive designer tool allows customers to see instant proof with the logo they upload onto the product by a particular decoration method. (embossing, debossing, silk-screening, embroidery, pad-printing, laser engraving, etc.) That means this online tool must be able to apply special effects (particular decoration method) to the logo customer uploads to the website.
Please refer to the websites below for some of the most common and often-used decoration methods and the visual effects of them
http://www.rightsleeve.com/main.asp?page=imprint
http://www.graffitipromo.com/decorating.asp
http://www.bishopwear.com/catalogue/step3.php

Other online design tools
http://capitalapparel.mysupplierwebsite.com/studio.php?product=38646 (similar to starlinequickpick)
http://www.zazzle.com/cr/design/pt-mug
http://www.cafepress.com/cp/customize/designer.aspx?pr=Front
http://studio.choiceshirts.com/choicestudio/orcad.aspx
http://talkinthreads.com/studio/studio_emb.htm (please see their embroidery effects on texts)

I want to have all the capabilities of the tool on starlinequickpick.com and maybe also my own tweaks. THEY ALL NEED TO FUNCTION AND WORK! Some of the must-have capabilities include,
Images/Logos (user uploads):
- allowing user to drag and drop, nudge around(up/down/left/right), save, resize, undo, rotate, skew, curve up/down, imprint color

Categories: Flash, Joomla, MySQL, PHP Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Big Budget B2b Ecommerce Site

May 9th, 2009 Comments off

I am looking to design and build a complete package website from scratch.

PLEASE GO THROUGH ALL THE REFERENCE SITES!!! THEY ARE THERE FOR A REASON!

Type of Business
We are a wholesaler of promotional products (also known as advertising specialties/give-aways/freebies). The business model is B2B. We sell products that can be put a corporate logo/personalization/customized message on to the item via various decoration methods such as embossing, debossing, silk-screening, embroidery, pad-printing, embroidery, laser engraving, etc. Some of our products are key chains, pens, travel mugs, and bags. A complete list of products will be provided after the bid closes.

To give you a sense of what we sell, here are some examples:
www.sunscopeusa.com
www.swedausa.com
www.tagmaster.net

1. Interactive Virtual Proof Designer (ideally flash based)
Please see: http://www.starline.com/default.aspx?pg=qphowto (introduction)
Live demo: http://www.starlinequickpick.com/default.aspx?pid=pf52&from=us&imp=y
I would like a similar or cloned exactly tool. The interactive designer tool allows customers to see instant proof with the logo they upload onto the product by a particular decoration method. (embossing, debossing, silk-screening, embroidery, pad-printing, laser engraving, etc.) That means this online tool must be able to apply special effects (particular decoration method) to the logo customer uploads to the website.
Please refer to the websites below for some of the most common and often-used decoration methods and the visual effects of them
http://www.rightsleeve.com/main.asp?page=imprint
http://www.graffitipromo.com/decorating.asp
http://www.bishopwear.com/catalogue/step3.php

Other online design tools
http://capitalapparel.mysupplierwebsite.com/studio.php?product=38646 (similar to starlinequickpick)
http://www.zazzle.com/cr/design/pt-mug
http://www.cafepress.com/cp/customize/designer.aspx?pr=Front
http://studio.choiceshirts.com/choicestudio/orcad.aspx
http://talkinthreads.com/studio/studio_emb.htm (please see their embroidery effects on texts)

I want to have all the capabilities of the tool on starlinequickpick.com and maybe also my own tweaks. THEY ALL NEED TO FUNCTION AND WORK! Some of the must-have capabilities include,
Images/Logos (user uploads):
- allowing user to drag and drop, nudge around(up/down/left/right), save, resize, undo, rotate, skew, curve up/down, imprint color

Categories: Flash, Joomla, Magento, MySQL, PHP Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Multi Item Quick Price

April 29th, 2009 Comments off

In need of javascript to perform 20 different item pricing. Not on 20 different pages. Not on 20 different lines. But Drop down menu. The item cost will be by base price plus add on price of 3 cost structures times quantity given by clients. All 20 items will have diffent costing structures.

Example

Item 1:
Base cost: $87
Customer choses quantity (Example) 1,000
The quantity will need to be multiplied by per piece price
1,000 x’s .034
Which will be added to the base price, which will show only a total of $121. The item will also have 2 check boxes which will multiply a possibility of 2 add on items. (Example) 1,000 x’s .015 Gumballs If checked (Example) 1,000 x’s .032 Dried Fruit if checked.

the Grant total will show price (which can not be changed by customer)$168

Item 2:
Base cost: $94
Customer choses quantity (Example) 2,400
The quantity will need to be multiplied by per piece price
2,400 x’s .0304
Which will be added to the base price, which will show only a total of $166.96 The item will also have 2 check boxes which will multiply a possibility of 2 add on items. (Example) 2,400 x’s .025 Hot balls If checked (Example) 2,400 x’s .025 Dried Fruit if checked.

the Grant total will show price (which can not be changed by customer)$286

Twenty items to choose from.

Example of a script that was start is attached.

Create script to transfer purchase information to a quote page/purchase page.

Multi Item Quick Price

April 27th, 2009 Comments off

In need of javascript to perform 20 different item pricing. Not on 20 different pages. Not on 20 different lines. But Drop down menu. The item cost will be by base price plus add on price of 3 cost structures times quantity given by clients. All 20 items will have diffent costing structures.

Example

Item 1:
Base cost: $87
Customer choses quantity (Example) 1,000
The quantity will need to be multiplied by per piece price
1,000 x’s .034
Which will be added to the base price, which will show only a total of $121. The item will also have 2 check boxes which will multiply a possibility of 2 add on items. (Example) 1,000 x’s .015 Gumballs If checked (Example) 1,000 x’s .032 Dried Fruit if checked.

the Grant total will show price (which can not be changed by customer)$168

Item 2:
Base cost: $94
Customer choses quantity (Example) 2,400
The quantity will need to be multiplied by per piece price
2,400 x’s .0304
Which will be added to the base price, which will show only a total of $166.96 The item will also have 2 check boxes which will multiply a possibility of 2 add on items. (Example) 2,400 x’s .025 Hot balls If checked (Example) 2,400 x’s .025 Dried Fruit if checked.

the Grant total will show price (which can not be changed by customer)$286

Twenty items to choose from.

Ecommerce Website With Flash

April 18th, 2009 Comments off

I need a website with flash or anything better (i am not sure)> I am selling only a single product on the website so its not a huge task for someone to build a website for a 100 products.

But since its a single product i need to showcase a picture gallery ( lots of pictures for the product) that is why i prefer flash so that we could animate the product and give a better view to the customer.

Since promoting a new product i need to attract customer by a special offer, where we will push the customer to buy the item. Example the item listed will be $20 and as soon as the customer enters the website we will give him a popup or some offer informing him that he can buy the item in a promotion for only $10.

Once i select your bid i will send you all the pictures of the product i have and you will need to do the color combination of the website which will suit the product in the most attractive way.

The website should have the regular links or tabs like about us, contact us,……….., FAQ and so on.

The product payment will be made through paypal and so i need the website connected to paypal for payment options.

After the customers order the product i should be able to generate printable invoice and notify the customer and all other ecommerce functions.

The best i would prefer is someone who has knowledge of zencart and PHP because if you are familiar with it all that you will be doing is making those flash pages and rest of the ecommerce options are all ready in zencart.

Any better ideas gladly accepted.

Sql And Perl Cart

April 16th, 2009 Comments off

Project Requirements (also attached)

Create a multi-user application to buy and sell items in a real-time auction. The application consists of:
1. MySQL database

Categories: MySQL, Perl/CGI Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Perl Mysql Action

April 15th, 2009 Comments off

Project Requirements

Create a multi-user application to buy and sell items in a real-time auction. The application consists of:
1. MySQL database

Categories: MySQL, Perl/CGI Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Auction Web Site

April 2nd, 2009 Comments off

In the registration page I want a section for the user to type in their address also for shipping purposes. In the control panel their should be specific information for the auctions that have ended. these are the following. ( the name of the item, picture, cost of item for the user to pay, item code number, time and date ended, users email address, and the users first and last name. ) When the bidster is used in a fixed price auction I want the users to still be able to have set their bidster to bid to a max amount , because the price will still go up, but all they will have to pay is the fixed price. In the control panel their should be a spot for me to add text in any auction to add specials on certain items. In the fixed price auctions the users checkout price should always be what the fixed price is set to; no matter what the actual bidding price went up to. I want to set up a reminder page for the users that have not yet paid for their items. With the name of the item, the balance due, a picture of the item, and the item code number ; even if they log out and log back in. But they should still be able to bid on other items. All of this should be displayed after the animated lady congratulates the user. I want to be able to type in a date and time of when each auction will end from the control panel and to be shown live in each auction. This way an auction will not linger for long periods of time. In the control panel their should be an option to set an auction for a fixed price or the price that is shown when an auction ends. I want to incorporate a feature called a bidster{reference swoopo.com} their feature is called a bid butler. I want mine to be called bidster. The bidster will bid on the behalf of people that wants the bidster to bid for them when someone out bids them. To activate the bidster people will have to put at least $40 into their bidster account. Bonus bids will only be accessed through their bidster account. You can qualify for bonus bids in several ways. Here are the ways to qualify for bonus bids. 1. If you invite a friend to annieup; when that friend actually purchase bids with us the invitee will qualify for 20 bids in their bidster account. 2. Check the box to sign up for the newsletter you get 10 extra bids but only one time per account. I don’t want them to be able to cheat the system by keep signing in and out of the newsletter. 3. If they purchase bids with us on or before April 1st. they qualify for 10 bids. One time only; I don’t want them to be able to get 10 extra bids every time they buy bids before that date. 4. Some Package bids have extra bids that comes with the package. –package 1. $10 you get 10 bids –package 2. $20 you get 23 bids(the 3 extra bids goes to bidster) –package 3. $50 you get 62 bids(The 12 extra bids goes to bidster) –package 4. $100 you get 130 bids (the 30 extra bids into bidster) –package 5. $200 you get 300 bids(100 extra bids into bidster) –package 6. $500 you get 1000 bids (500 extra bids into bidster) 5. You qualify for 5 bids just for registering. I want to have 1 account per household. 6. written testimonials qualify for 10 extra bids. 7. video testimonials qualify for 30 extra bids. Instead of having to put $40 in their bidster to activate it you have to put 40 bids in the bidster to activate it. The name of the site is ANNIE UP (www.annieup.com) I would like for customers to pay through paypal and credit cards. I want to be able to control which items go up 1cent, 5cent, or 10cent every time you bid. I also want to control the tick time of each item. The tick time is the time that winds down. I want to be able to pause any of the auctions for any reasons. I also want a winners page And a testimonials page. Each item should have a tick time, a picture of the item, the name of the item, the retail price of the item, the amount saved, the price that is actually going up every bid, and the users name that last bid. I want the amount saved to adjust every time someone bids. I want the user to be able to either click on the picture or the name of the item and see a detailed description of the item listed. I also want to be able to list an item in my administration site that is automatically listed when an auction ends so I don’t have to list a new item manually every time that particular auction ends. This is one of the most important features. I would like you guys to create a logo to place in my auction (100 free bids, 500 free bids, and 1000 free bids {reference swoopo.com} I would like the same done for cash $100, $500,$1000. I want to be able to type in an auction Id to load to load it into the administration site. This way when an auction ends I can reference an existing auction Id that is saved for future reference. When an auction is under 30 seconds: I want a flashing slogan that says (just a few seconds left). I want to incorporate the same type of features in the register and help pages from swoopo.com I want a news bulletin to always flash across the screen of the home page; stating the name of product, amount of the end price, with the users name when an auction ends.(reference swoopo.com). I want the graphics on the home page (pictures of different products) to switch around to have an animated feel to the home page. An eye catcher.(reference Items on swoopo.com home page.) I want a buy bids button on every page with an invite a friend logo under it. I want to add a feature to the bidster for people to be able to control and automatic bid if the product that the person is bidding on gets below 30 seconds. I want an alert to sound for customers that are running low of bids.( alert if under 20 bids). I want to be able to end or pause a live auction from the administration site if i need to change the tick time of the auction after a specific amount of time or manually. I want to be able to put as many items as I like in the categories for future listings (reference swoopo.com) I want the homepage to consist of different categories of items that are about to end (reference swoopo.com)When there is less than 30 minutes left on that auction; 10 items that are under 30 minutes and a list of items that are in live auctions from different categories(reference swoopo.com. I want to be able to copy and paste pictures and description of items into my administration site. I want seperate sections in the administration site to post the picture of an item, description of the item, and the name of an item; with an auction Id so I can reference back to that item at any time without having to type it in again. I would like you guys to create an attractive sound for every time someone wins an auction. I want box to appear on every users screen with the auction that was won, price ended, and users name. with a logo that says (congratulations Username you have won this item). But I want the box to appear animated to bring it to life. I want another sound effect when someone clicks on one of the items pictures or name of item; with an animated effect to go into the details of that product. But only on the persons computer that clicks on that item. And a different sound effect when that person bids on an item. If a user wins an item; I want a computerized lady to appear on their screen only to congratulate them. (sound effects and animation to the fullest extent). I want to incorporate all of the features that swoopo.com has when someone clicks on their items (bid history, register now, enlarged picture of the item, what the item recently sold for, savings, a place for people to place their ads at the bottom of page for that particular item, a detailed description of that item, and a place for different pictures of an item to be enlarged. The rewards page consists of the different ways that users can earn extra bids. I have listed several different ways that users can earn extra bids the numbered list will be on the rewards page. I want the bid to light up or highlight every time someone bids on an item(reference swoopo.com) when users register I want to reward them with 20 extra bids when they buy $50 or more worth of bids on their first purchase. Place this page in the help tab How does the Bidster work? How does the Bidster decide when exactly to place my Bids? Our Bidster is instructed to be as frugal as possible when bidding. That’s why they wait until the last 10 seconds of the auction countdown to place your bids. When there are two or more Bidsters set on the same auction, they duke it out there and then, placing all their bids immediately. This tit for tat battle means that the price and countdown both increase with each bid placed. (We do this so that bidders can easily see the auctions that will end soon unless another bid is placed). We have a few simple rules about how your Bidster can be used – just remember these when telling your Bidster when to bid: * You must use at least two bids when setting a Bidster: if you just want to place a single bid, just click the bid button. * Your maximum price has to be at least one U.S. dollar (US$1) higher than the current end price. * Once the bidding has reached the

Categories: Logo Design, SQL, System Administration, Website Design, XML Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Swoopo Clone With Ebay

March 16th, 2009 No comments

Need a clone of this site www.swoopo.com with some features from www.ebay.com, all features, there is a small buget for this so please bid the for the cheapest it can be done

What I need:

********************************
***Swoopo/Tencents – Settings******
********************************

* Check user balance, users can check his remaining credit balance.
* Ability to give users free bids.
* Ability for users to receive free bids for registering, for winning their first auction and for buying bid packages for the first time. (set by admin which free set will apply in which case)
* Buying bid packages (1 / 5 / 10 / 20 / 30 / 50 / 100 / 200 / 300 / 500 / 1000 – bidpacks). Price for bidpacks sets admin in the adminpanel
* Pay per bid – manually and bid automat (Bidbuttler)
* Each bid = Time incressed by 1min. / after 20,00

Website To Buy/sell Used Items

March 16th, 2009 No comments

I need a site where people can list, sell and buy used items.

It is very similar to half.com. The difference is that when the item sells, the seller drops off the item at my store. The buyer will then pick up the item at my store. The buyer pays me online when he purchases the item, then I pay the seller in person when he drops off the item.

Each customer must be able to make a user name, post items with descriptions, and purchase items. They should also be able to track their history of transactions.

Bear