Loading...
Uploaded by britblad on Nov 25, 2011
Finishing off the recover password
Education
Standard YouTube License
I wanna parse a value eg. email to a sign up success page upon registration, how do i go about doing that?
gukkie87 3 months ago
@gukkie87 what value do you want to parse and how do you want to parse it? (is it a string, int, bool) is t coming from the form or the DB or where?
britblad 3 months ago
@britblad Hey buddy, ok so lets say the user registers and is redirecetd to the signup success page yea, how do i show the email he singed up with on that sign up page? Eg. "We have sent u an email at users_email"
@gukkie87 in the controller add $data['email'] = $this->input->post('email_address');
then in the view echo out $email
@britblad thanks buddy, it works well!
Good job!
Load more suggestions
I wanna parse a value eg. email to a sign up success page upon registration, how do i go about doing that?
gukkie87 3 months ago
@gukkie87 what value do you want to parse and how do you want to parse it? (is it a string, int, bool) is t coming from the form or the DB or where?
britblad 3 months ago
@britblad Hey buddy, ok so lets say the user registers and is redirecetd to the signup success page yea, how do i show the email he singed up with on that sign up page? Eg. "We have sent u an email at users_email"
gukkie87 3 months ago
@gukkie87 in the controller add $data['email'] = $this->input->post('email_address');
then in the view echo out $email
britblad 3 months ago