+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Looking for someone to help assist with coding?

  1. #1
    Hermoine22's Avatar
    Hermoine22 is offline x10 Sophmore Hermoine22 is an unknown quantity at this point
    Join Date
    Jul 2005
    Posts
    162

    Looking for someone to help assist with coding?

    Hello
    I am looking for someone to help assist in coding for my website. I have tried and not able to create a registration system, I need someone to be able to tutor me and show he how to create what I am looking for. I am making a virtual hogwarts and I need the ability to create a registration form, that stores student information, they are to log in and view their profile and information etc...also to be able to sort them automatically into a house and assign student ID. I have gotten as far as creating a registration using this tutorial http://www.phpeasystep.com/phptu/24.html but this is to verify email I do not need students to do so. It would be much appriciated if I can get some assistance.

  2. #2
    Francis_J is offline x10Hosting Member Francis_J is an unknown quantity at this point
    Join Date
    Jul 2010
    Posts
    8

    Re: Looking for someone to help assist with coding?

    First of all, do you have some background with PHP and MySQL?

  3. #3
    essellar's Avatar
    essellar is offline Community Advocate essellar has a spectacular aura about
    Join Date
    Feb 2010
    Location
    Toronto, Ontario, CA
    Posts
    1,153

    Re: Looking for someone to help assist with coding?

    As long as the Sorting Hat doesn't actually need to be telepathic, I might be of some assistance. Gotta warn you, I'm more of a Snape than a Lockhart in the personality department; but, then, I'm also more of a Snape than a Lokhart in the knowledge department as well. Fire me a PM so we can do some email correspondence -- this is a bit more than the forum can tolerate.
    “Beware of bugs in the above code; I have only proved it correct, not tried it.” --Donald Knuth
    "It was as if its architects were given a perfectly good hammer and gleefully replied, 'neat! With this hammer, we can build a tool that can pound in nails.'" -- Alex Papadimoulis (on TheDailyWTF.com)

  4. #4
    Hermoine22's Avatar
    Hermoine22 is offline x10 Sophmore Hermoine22 is an unknown quantity at this point
    Join Date
    Jul 2005
    Posts
    162

    Re: Looking for someone to help assist with coding?

    Yes I have basic knowledge, but this is new to me first attempt.

  5. #5
    callumacrae's Avatar
    callumacrae is offline not alex mac callumacrae is just really nice
    Join Date
    Dec 2007
    Location
    Wellesbourne, England
    Posts
    5,162

    Re: Looking for someone to help assist with coding?

    My recommendation: use Codeigniter as a framework - it has a lot of useful features built in that are good for beginners. A good Codeigniter tutorial (basics) is here, but it has a few very basic errors. I've also seen this tutorial recommended, but I haven't actually looked at it myself.

    Codeigniter has a pretty good template system built in, and some good session and database features - you can find details about all of them in the Codeigniter User Guide. Then just search google for stuff like login systems.

    The Codeigniter database class will definitely help you, it's very good and well documented.

    I don't think you need some to help you - just use google and you will be able to find everything you need.

    ~Callum
    I can customise your phpBB board. Send me a PM.
    lynxphp - info, tutorials and scripts
    "A forum post should be like a skirt; long enough to cover the subject but short enough to keep things interesting."

  6. #6
    Hermoine22's Avatar
    Hermoine22 is offline x10 Sophmore Hermoine22 is an unknown quantity at this point
    Join Date
    Jul 2005
    Posts
    162

    Re: Looking for someone to help assist with coding?

    Does it help to write scripts?

  7. #7
    learning_brain is offline x10 Sophmore learning_brain is an unknown quantity at this point
    Join Date
    Apr 2010
    Location
    UK, Midlands
    Posts
    170

    Re: Looking for someone to help assist with coding?

    A good registration system has several steps and should not be undertaken lightly, which is why a framework may be of use.

    1) A register page (preferably with a CAPTCHA image system), which gets username, e-mail and password. The php should then store this information to the database as an unverified account together with a unique ID.
    2) The php should then auto-fire an e-mail back to the e-mail given with a link+ID back to a verfication page - which would again ask for confirmation of password. (This is optional if you have a good CAPTCHA process)
    3) The verification page will then update the database to show that the user is verified.
    4) A login page - this can use cookies or sessions to check that the username and password match. If they do, store that information in cookie/session for all future pages.
    5) Every page which is user-sensistive should have a check on it to find out if the user is logged in correctly.

    Quite a few steps - some of which requiring one-way encryption.

    Is that a start?

    I personally hate using templates because they are tricky to alter if you don't understand how the template works... however, for someone with little knowledge - this is probably a good plan.
    Last edited by learning_brain; 01-07-2011 at 05:59 PM.

  8. #8
    Hermoine22's Avatar
    Hermoine22 is offline x10 Sophmore Hermoine22 is an unknown quantity at this point
    Join Date
    Jul 2005
    Posts
    162

    Re: Looking for someone to help assist with coding?

    Yes it does thank you but I just need to learn how to go about it I have never done it before

  9. #9
    callumacrae's Avatar
    callumacrae is offline not alex mac callumacrae is just really nice
    Join Date
    Dec 2007
    Location
    Wellesbourne, England
    Posts
    5,162

    Re: Looking for someone to help assist with coding?

    Codeigniter would make coding this a lot easier, as it has a lot of the features built in. Read the tutorial, then search the internet for a login script tutorial.

    ~Callum
    I can customise your phpBB board. Send me a PM.
    lynxphp - info, tutorials and scripts
    "A forum post should be like a skirt; long enough to cover the subject but short enough to keep things interesting."

  10. #10
    denzil is offline x10 Sophmore denzil is an unknown quantity at this point
    Join Date
    Jan 2011
    Location
    South Africa
    Posts
    134

    Re: Looking for someone to help assist with coding?

    Send me a pm if you are still stuck. I'm probably only a few steps ahead of you. Started learning php about 5 days ago. But I can help with setting up your db and guide you with some php for user registration and log in. Pretty much the steps mentioned in post #7. Although I'm not too familiar how to go about sending the email for verification (I'll definitely look that up anyway). But yes, feel free to send me a pm.

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 1
    Last Post: 05-15-2010, 06:27 PM
  2. Please Assist
    By rlforum in forum Free Hosting
    Replies: 3
    Last Post: 11-11-2007, 10:19 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers