can someone help me in creating a simple PHP form ?
i ned to create a form that will request some registration elements from the user and send it to me via email as well , post a few additional hidden elements to another form using post .
Registration form example
any kind soul ? :oQuote:
<form method="post" action="http://somesite.com/reg.php?n=123">
<input type="hidden" name="reginfo" value="name: test-user.com; Username: testuser; Password: testpassword">
<input type="hidden" name="regnumber" value="AB129831Q2782">
<input type="hidden" name="comments" value="">
<input type="hidden" name="callback" value="http://www.mysite.com/callback.php">
<input type="submit" value="Proceed to Next Step">
</form>
