Hi I'm trying to implement a simple contact form on my website using this tutorial - http://rosstanner.co.uk/2012/11/build-simple-contact-form-html-php-bootstrap/
Trouble is after the user submits an action I need the user to be redirected to an anchor ID down the bottom of the page i.e. www.somepage.com/index.php#contact
The redirect is this...
header('Location: index.php?s='.urlencode('Thank you for your message.'))
I've tried...
header('Location: index.php?s='.urlencode('Thank you for your message.')'#contact')
...but to no avail.
When I try to add anything like this to make it scroll down to the anchor bookmark the browser hangs on the contact-form-submission.php page (separate php page for the contact form logic)
I'm sorry if I've explained this in a convoluted. I don't actually know PHP!