Results 1 to 3 of 3

Thread: members registration form and password delivery system

  1. #1
    Join Date
    Mar 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation members registration form and password delivery system

    I'm building a website that needs the following functions.
    - A members registration form.
    - A password delivery (via email) system that will allow members to login and view restricted pages/content, only after payment has been received via paypal.

    I have a number of pages that I want to be available only to those who have paid a membership.

    Is their an easy way to do this using just one script?
    Or will I need a number of different scripts?

    Any advice will be much appreciated

    Many thanks
    G

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    You can use php and mysql to create a database that will track the users, etc.
    http://php-mysql-tutorial.com

    the PHP mail() function will allow for that email to be sent (assuming your server is configured to handle that).
    http://www.php.net/manual/en/function.mail.php

    As for paypal, that makes things complex. It's simple enough to store a true or false value for 'verified payment', etc. in the database, but getting this value from paypal may be difficult. I suggest looking at the documentation on their site to see how you can best interact with their databases, if at all.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Mar 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks eversome much.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •