Hello,
is it somehow possible to submit a html Form to an embedded php Script?
For example I have this html form:
{{html}}
<form action="" id="test" method="post">
<div>
test1: <input type="text" name="test1" value="Enter your question here" class="withTip" size="100"/><br>
test2: <input type="text" name="test2" value="Enter your question here" class="withTip" size="100"/><br>
<span class="buttonwrapper"><input type="submit" value="Create Test" class="button"/></span>
</div>
</form>
{{/html}}
And I would like to have a php Script executed after sending the Submit button, I also need to access the form elements inside the php Script.
Thanks in advance!
Best Regards
Manuel