Web Design Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignWeb Design Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 5th, 2004, 05:33 PM
x215 x215 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 3 x215 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Shopping Cart

Hi I just started a web design class and all I know how to do is make cheap html websites and link pages together.

My classmates and I have decided to make a store that sells shirts and sweaters. I was wondering if someone can help or tutor me on how I would go about picking the size and color of the t-shirt and then sending it to a shopping cart.

Please help I'm desperate.

Reply With Quote
  #2  
Old May 6th, 2004, 07:33 AM
rachna30 rachna30 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 25 rachna30 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 57 m 46 sec
Reputation Power: 0
see, first of all you need to decide the various attributes of the products you want to sell. then decide what information about the customer you want to store. design the database carefully after taking all the facts in mind. only then proceed to developing shopping cart. one more important thing, the language you are going to make the cart. you should have enough knowledge of the language you are gonna use.

Reply With Quote
  #3  
Old May 6th, 2004, 12:34 PM
x215 x215 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 3 x215 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I have used Oracle 9i before and sucessfully built a database with the forms loader. but how would I implement that for use within a web page? how would the data travel from my web page to the database?

Reply With Quote
  #4  
Old May 6th, 2004, 02:14 PM
sadcox66 sadcox66 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Location: Tennessee
Posts: 11 sadcox66 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Most developers overcome this with a glue language .e.g.

Here are typical examples.
HTML->PHP->MySql/or other
HTML->ASP->Microsoft SQL/or other
HTML->JSP->Oracle /or other
HTML->perl(cgi-bin)->MySql/or other

For a PHP/MySql example demo you can look at my signature and learn from there.

Reply With Quote
  #5  
Old May 6th, 2004, 09:06 PM
dejaone dejaone is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Posts: 300 dejaone User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 h 7 m 22 sec
Reputation Power: 5
if # of products you're trying to sell is small, you can use a text file to store your product catalog. The challenge is to connect your shopping cart to some payment gateway to process order online. You can do this in any popular language, php, Java or etc.

Reply With Quote
  #6  
Old May 7th, 2004, 07:45 PM
Cuttlefishstick's Avatar
Cuttlefishstick Cuttlefishstick is offline
edible
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 31 Cuttlefishstick User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 5
Paypal has some simple tools for adding shopping abilities to your site, even if your site doesn't have php/perl. (or you don't know how to write in it)

I used them years ago on a similar project. But I never did sell much.

Here's one I helped a friend of mine setup. I'm supprised she still has it setup. It doesn't look like she's sold anything either. lol

Commision page

All the code resides on Paypal's servers. Just check the source on that page to see what we did.
__________________
www.audiolunchbox.com 100,000+ MP3s

Last edited by Cuttlefishstick : May 7th, 2004 at 07:50 PM.

Reply With Quote
  #7  
Old May 13th, 2004, 02:18 AM
x215 x215 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2004
Posts: 3 x215 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hey thanks cuttlefishstick that really helped me solve the problem.

Here is what I came up with

<html>
<head>
<title>this is a test</title>


<h1>Sweater</h1>

</head>






<body>
<center><h3>All Prices include Shipping within the US</h3></center>
<br>
<br>
<font color = silver><center><h3>Princess Coffee Mug 7.5 oz</h3></center></font>
<P align ="center"><img src ="C:\Documents and Settings\Hung Vuong\Desktop\mugs\1.jpg">

<form name="_xclick" target="paypal" action="https://www.paypal.com" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="item_name" value="Sweater">
<input type="hidden" name="amount" value="14.99">
<input type="image" src="http://www.paypal.com/en_US/i/btn/sc-but-01.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="add" value="1">
<br>
<br>
<table>
<tr>
<td><input type="hidden" name="on0" value="Color?">Color
<select name="os0">
<option value="Red">Red
<option value="Green">Green
<option value="Blue">Blue</select></td>
</tr>
<tr>
<td><input type="hidden" name="on1" value="Size?">Size
<select name="os1">
<option value="Small">Small
<option value="Medium">Medium
<option value="Large">Large
<option value="X-Large">X-Large
</select></td>
</tr>
</table>





</form>



<form name="_xclick" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="image" src="https://www.paypal.com/en_US/i/btn/view_cart.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="display" value="1">
</form>
















</body>

</html>

Sorry if this is a stupid question but how do I align the paypal
button to the right of the view cart towards the bottom.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWeb Design Help > Shopping Cart


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway