Quote:
Originally Posted by Martyh
Hi,
Is it possible to have information from another form on another page to be sent to your form?
Basically , if I have a HTML form within a page made with Logician's web templates and I want that information ( just one field really ) to be carried over to your form on submit can that happen ?
Or even better would be to have your form within one of Logician's web templates , any chance of that happening ?
Logician's templates are here , where I asked the same question
https://vborg.vbsupport.ru/showthrea...186644&page=28
Thanks
|
I've had no experience with Logician's templates but you can submit information to the form using method="get" and sending to a url like:
HTML Code:
<form name="form" action="misc.php?do=form&fid=3" method="get">
Username:
<input type="text" name="user" />
<input type="submit" value="Submit" />
</form>
yourforum.com/forum/misc.php?do=form&fid=3
&user=bob
And then you could use form hooks or hidden fields to get variable.