adding a hyperlink to a hidden form input
Posted: Fri Nov 06, 2009 2:11 am
Hi all,
could be going about this the wrong way.
Can someone please give me direction or syntax for the last input.
First a form is shown to enable user to select a recipient of an email then the email is sent.
If I leave it without the input type hidden it shows on the form I only want the link to appear in the email that is sent. Currently my email is showing everything else I want but this last input only shows upto <a href=
Cheers
could be going about this the wrong way.
Code: Select all
<p>Incident Report Id: <input type="text" name="Incident Report Id" size="15" maxlength="15" value="' . $row[0] . '" /></p>
<p>Reported by: <input type="text" name="Reported by" size="15" maxlength="30" value="' . $row[1] . '" /></p>
<p>Description: <textarea name="Details" rows="8" cols="70">' . $row[2] . '</textarea> </p>
<br/>
<input type="hidden" name="link" value="<a href = \"http://just4em.com/incident/view_reports.php\">Find Incident</a>"/>First a form is shown to enable user to select a recipient of an email then the email is sent.
If I leave it without the input type hidden it shows on the form I only want the link to appear in the email that is sent. Currently my email is showing everything else I want but this last input only shows upto <a href=
Cheers