Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

The Database Forum


You are currently viewing our The Database Forum as a guest. Please register to participate.
Login



Reply
Old 02-07-2007, 09:35 AM MySQL and paypal...
bigfreak's Avatar
Extreme Talker

Posts: 179
Name: Andy
Trades: 0
i'm not sure if this is the correct spot for this or not, but here goes.

I am having a programmer create a small product database that will list all the products, pics, etc.

What I'm wondering is if we can have the database interact with paypal.

i normally use DW for my site design, and I know there's a plugin that will let me do it.

I'm not sure if i've explained it right or not.

any help would be greatly appreciated.

thanks
bigfreak is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 02-07-2007, 11:59 AM Re: MySQL and paypal...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
a database can't interact with paypal at all

You need server side code to do database operations

so it depends on what code your host supports.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 02-07-2007, 06:07 PM Re: MySQL and paypal...
Junior Talker

Posts: 4
Trades: 0
Hey,

This is one way you can interact with mySQL and paypal:

When a user orders something from your web site you can store the order transaction ID into the database and every time you want to view the order you can call the order transaction ID from the database and send it to paypal to get the order information.

I myself can do this. If you have any trouble let me know.

This method is not interacting the way chrishirst is talking about.
__________________
Cheap web hosting, domain names & ecommerce solutions
Web:
Please login or register to view this content. Registration is FREE

Email: contact @ ecommercedev.com

Last edited by ecommercedev; 02-07-2007 at 06:09 PM..
ecommercedev is offline
Reply With Quote
View Public Profile
 
Old 02-07-2007, 06:14 PM Re: MySQL and paypal...
Republikin's Avatar
Defies a Status

Posts: 3,189
Trades: 3
Have your developer look at https://www.paypal.com/IntegrationCe...c_pdnHome.html

The short answer is it absolutely can be done however, only in the way that I think you really mean, not how you've explained it.
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
Republikin is offline
Reply With Quote
View Public Profile
 
Old 02-07-2007, 11:32 PM Re: MySQL and paypal...
bigfreak's Avatar
Extreme Talker

Posts: 179
Name: Andy
Trades: 0
i basically just want it to process the payment.

i think we're going to link the product codes and have it link to pay pal.

i'm glad you guys know what i'm talking about! cause I obviously don't. lol
bigfreak is offline
Reply With Quote
View Public Profile
 
Old 02-08-2007, 04:19 AM Re: MySQL and paypal...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
When a user orders something from your web site you can store the order transaction ID into the database and every time you want to view the order you can call the order transaction ID from the database and send it to paypal to get the order information
You can't using MySQL only, because it has no functions that can POST data to another site.

You need some scripting to handle the data transfer between the order page -> paypal -> your confirmation page.
So if your programmer is handling the code to display the items on site it's an extremely simple step to handle the transactions as well.
However to give you any pointers we need to know what code the site is being developed in.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 02-08-2007, 01:46 PM Re: MySQL and paypal...
memberpro's Avatar
Super Talker

Posts: 143
Trades: 0
You can't use only MYSQL, you must create a server-side program that will handle the transactions and insert your data into your database.

To do this you will need to turn on the IPN feature in Paypal. What will happen is that after payment is made through paypal, a number of variables will be posted by paypal to the server-side script your create (the post variables include price, product id, ect).

From the server-side script , you can access your database and update your transactions table to keep track of all your orders. And do anything else that you wish ( print labels, send an email to yourself or the customer, etc.)

Good luck.
__________________

Please login or register to view this content. Registration is FREE
- step-by-step learn how to design, create and install your own website in hours...not days.
Please login or register to view this content. Registration is FREE
was never so easy.
memberpro is offline
Reply With Quote
View Public Profile
 
Old 03-05-2007, 01:43 AM Re: MySQL and paypal...
Average Talker

Posts: 15
Name: Robert Langevin
Trades: 0
I'm happy you stated this problem. I myself am developing a site for a client and I recently found out a piece of information she left out. The items she is selling are one-of-a-kind. So I have a similar problem. Good side is, she uses PayPal. Good luck with your adventure. Let me know how you implement your solution.
WebGuy07 is offline
Reply With Quote
View Public Profile
 
Old 03-05-2007, 04:29 AM Re: MySQL and paypal...
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Good isn't it?
The little tiny details that clients leave out and the comment is always "Did I not tell you that?"

and the same question applies, What server side code are you using we can be more specific.
It's a very simple matter of coding the payment form "on the fly" with the item the visitor selected.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 03-18-2007, 10:36 PM Re: MySQL and paypal...
Novice Talker

Posts: 8
Trades: 0
Not sure if this is helpful but I use zen-cart or oscommerce for my online stores you can set up the paypal payment right in the admin panels and then create a template around that.
__________________

Please login or register to view this content. Registration is FREE
- Over 700 Ready for Download Now!
Lindz is offline
Reply With Quote
View Public Profile
 
Old 03-19-2007, 02:41 AM Re: MySQL and paypal...
Extreme Talker

Posts: 189
Trades: 1
Actually, I have 1 dumb question: what do you, the author of this topic, means when you say "we can have the database interact with paypal"?
__________________

Please login or register to view this content. Registration is FREE
yellow1912 is offline
Reply With Quote
View Public Profile Visit yellow1912's homepage!
 
Reply     « Reply to MySQL and paypal...
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.42962 seconds with 12 queries