Installation guide

2 Getting Started
2-4
Creating Input Documents
Input Template
The file input_template.html provides the code needed to create a
MATLAB Web Server input document. An abbreviated version looks like
<!-- STEP 1
Choose either the NT version or the Unix version of the form
tag (depending on which platform the matweb client program
will be run):
-->
<!-- NT version: -->
<form action="/cgi-bin/matweb.exe" method="POST">
<!-- Unix version: -->
<form action="/cgi-bin/matweb" method="POST">
<!-- STEP 2
Create a hidden field naming your M-file. Replace MY_M_FILE
with the name of main MATLAB function of your application.(An
HTML input field of type "hidden" is commonly used to pass
variables to a web server. It is not displayed by the
browser.)
-->
<input type="hidden" name="mlmfile" value="my_m_file">
<!-- STEP 3
Add all your other HTML form tags here. Replace
MY_INPUT_VARIABLE_1 with the name of an input variable in
your application.
-->
<p>My input variable 1: <input type="text"
name="my_input_variable_1">
<!--
Create additional input variables here.
-->
<!-- STEP 4
Create a "submit" input tag for the user to click to send
the input to your program.
-->