I'm an html coder and I want to identify from what website a user has submitted a contact form. The contact form is an <!--#include>file (.shtml) and this contact form include file is being used on two different websites. Since it's only one include. I thought about adding two hidden fields to the include contact form with IDs of the two different sites:
Code:
<input type="hidden" data-id="new_student_signup" name="new_student_signup" value="" />
<input type="hidden" data-id="existing_student_signup" name="existing_student_signup" value="" />
But I'm not sure this will work since it's only one file. Here's why:
- If its just one include file, how is the form going to know what site it came from?
- Does it require a programming scripting language to get information from a hidden field in html, and if so, will my adding the two hidden input fields (with the data-id="" attribute) be sufficient for the html part of the <!--#include> file?
- Should I just create a new include file for the other website and add the hiddenfield to that file?
Example:
for the hidden field "new_student_signup"
Code:
<!--#include virtual="new_students/existing_student_signup.shtml>
for the hidden field "existing_student_signup"
Code:
<!--#include virtual="existing_students/new_student_signup.shtml>
Thanks