CodeIgniter Forums
Member Registration form - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Member Registration form (/showthread.php?tid=19622)



Member Registration form - El Forum - 06-12-2009

[eluser]Unknown[/eluser]
i just wanna make a member registration form. But facing problem !!!
please give hints ..


Member Registration form - El Forum - 06-13-2009

[eluser]d3xt3r[/eluser]
I think you are going to have to give a lot more information than, that. Try searching Google for CodeIgnitor Samples.


Member Registration form - El Forum - 06-13-2009

[eluser]Yorick Peterse[/eluser]
[quote author="webmaster.noor" date="1244888851"]i just wanna make a member registration form. But facing problem !!!
please give hints ..[/quote]

Here's the golden tip : provide more information. Second, if you have any PHP knowledge an registration form should be really, really easy.


Member Registration form - El Forum - 06-13-2009

[eluser]TheFuzzy0ne[/eluser]
[url]http://lmgtfy.com/?q=codeigniter+"registration+form"[/url]


Member Registration form - El Forum - 06-13-2009

[eluser]Dam1an[/eluser]
you could also use one of the many available auth libraries, which provide you with the basis of what you need


Member Registration form - El Forum - 06-13-2009

[eluser]got 2 doodle[/eluser]
hint
Code:
($question == 'incomplete' ? null : $help)

doodle


Member Registration form - El Forum - 06-13-2009

[eluser]TheFuzzy0ne[/eluser]
Code:
function ask_for_help($research_done=FALSE)
{
    if ($research_done)
    {
        get_help();
    }
    else
    {
        do_some_research();
        ask_for_help(TRUE);
    }
}