hi tsaikkala,
You havent come back on my reply. Please let us know whether it answers your query or not.
Thanks,
Main Topics
Browse All TopicsI want a counter as shown on www.evolt.org
up the top you will see a paypal donations counter...
I want to be able to print on my webpage, how much i have received into my paypal account.
The user that can answer this question will not only get 250 points, but i will give them free php/mysql hosting...
This is urgent, i need my users to see how much has been sent to my paypal, so we can see how close we are to the target donations...
Thanks in advance...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
tsaikkala:
This old question needs to be finalized -- accept an answer, split points, or get a refund. For information on your options, please click here-> http:/help/closing.jsp#1
EXPERTS:
Post your closing recommendations! No comment means you don't care.
Business Accounts
Answer for Membership
by: polmintPosted on 2003-05-07 at 10:51:40ID: 8481710
hi tsaikkala,
m/~amoore/ scripts/pa ypalipn.tx t
.net/paypa l_ipn_3.ht ml
oard/cgi-b in/forum_s how.html where u can find some freelancers who are do it for a fee.
I assume that u have already signed up with paypal, created an account and have the paypal button on your site. Now once u have done it. Lets explore how this objective of yours is to be achieved.
Q. How do u know how much u have recieved as donation in your paypal account?
Log on to your account and check the transaction logs and get the details.
So in reality you account balances are maintained at the paypal server for which u need to log in and check.
One can write a program to automatically log in and get the balance. This may not be possible as I assume that paypal is enough secure to block automated script logging. So no entry this way.
But we need not be disappointed. The alternative would be to store some user information at the your end.
What u need to do is to capture the user details along with the amount he wants to donate before submitting the same to the paypal servers.
below url may be of use to u on this http://cow.mooresystems.co
you can add a database table some thing similar to that in that article.
Also u need to set up IPN - Instant Payment Notification. There is a whole tutorial on IPN at this site
http://www.webmasterinabox
Coming to the point what this IPN sends back to your server is whether the Transaction is Accepted or Failed.
When u setup the whole thing u know what is the balance in your account and u know what is being incremented. (Increment the balance if the transaction is Accepted). So now u have ended up with net balance in your account.
Next step is to fix a target for the donation and then display actual balance v/s target in a graphical format.
What I have given u the logic framework of how this can be achieved.
Now if u want actual code and setting up then please visit http://www.paypalipn.com/b
Hope this answers your query.
Thanks,