Spinneret "replacement for the PINK"?
Brian Carpenter
Posts: 728
One of the things that i would like to see the spinneret do is replicate how the PINK does some things.
With the PINK, i have a series of Variables Nb_var00.... and so on. In HTML code, i can do this...
i can also use a form to collect a value for a variable
is any of the current code able to do this yet?
With the PINK, i have a series of Variables Nb_var00.... and so on. In HTML code, i can do this...
<HTML> The value in variable 1 is: <Nb_var01> </HTML>
i can also use a form to collect a value for a variable
<html> <form method="post" action="test.htm" <p> What value would you like to store in variable 01? <input name="Nb_var01" type="text" maxlength="64"> <input type="submit" value="Accept"> </p> </form> </html>
is any of the current code able to do this yet?