I have link with e-mail like:
<a href="mailto:no-reply@mydomain.com">My e-mail address</a>
When clicked on link it should do two tasks:
1. PHP SESSION variable:
$_SESSION["var"] = "no-reply@mydomain.com";
2. Live Ajax value to publish at form
As there is stored value into session $_SESSION["var"] = "no-reply@mydomain.com";
there should be Ajax based SESSION value to transfer further to form.
How to retrieve this e-mail address into the same page (Live change) and store into SESSION variable.
Regards and thank you for your reply.