Welcome Guest, Not a member yet? Register   Sign In
Form validation with redirect
#13

(10-28-2015, 02:15 AM)msheath Wrote: Many thanks for that I can see how it would work when the form is sent. However what happens if you access the home function from, say, a nav button? The validation run happens even though no form data has been sent, it registers 'false', the view is loaded and scrolls down to the form, even though I don't want it to in that case?

No it does not scroll down, as accessing /home is not the same as /home#anchor. You only add the #anchor to your post url which you use in your form.
PHP Code:
$data['post_url'] = base_url('/home#anchor');
$this->load->view('yourform'$data); 

Pass the post_url variable as the first argument on form_open
PHP Code:
// in your view
echo form_open($post_url); 

You only add the #anchor to your post URL. Any nav buttons or menu links will link to the page without the #anchor
Reply


Messages In This Thread
Form validation with redirect - by msheath - 10-26-2015, 04:42 AM
RE: Form validation with redirect - by Martin7483 - 10-26-2015, 05:34 AM
RE: Form validation with redirect - by msheath - 10-26-2015, 07:26 AM
RE: Form validation with redirect - by Martin7483 - 10-26-2015, 07:44 AM
RE: Form validation with redirect - by msheath - 10-26-2015, 08:09 AM
RE: Form validation with redirect - by msheath - 10-28-2015, 02:39 AM
RE: Form validation with redirect - by Narf - 10-27-2015, 03:42 AM
RE: Form validation with redirect - by msheath - 10-28-2015, 02:54 AM
RE: Form validation with redirect - by Narf - 10-28-2015, 04:21 AM
RE: Form validation with redirect - by msheath - 10-28-2015, 04:50 AM
RE: Form validation with redirect - by Martin7483 - 10-27-2015, 12:16 PM
RE: Form validation with redirect - by msheath - 10-28-2015, 02:15 AM
RE: Form validation with redirect - by mwhitney - 10-27-2015, 12:29 PM
RE: Form validation with redirect - by Martin7483 - 10-28-2015, 02:41 AM
RE: Form validation with redirect - by Martin7483 - 10-28-2015, 05:00 AM
RE: Form validation with redirect - by msheath - 10-28-2015, 05:15 AM



Theme © iAndrew 2016 - Forum software by © MyBB