Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipX.Lib v1.2 - <b>formbeg()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
FormBeg()
Returns/writes HTML Form begin tag and attributes <form ... >
---------------------------------------------------------------------

Syntax:

  FormBeg( <cName>, <cAction>, <cMethod> )  --->  cString

Arguments:

  <cName> is a character string for the name of the form.

  <cAction> is a character string representing the CGI program to
   execute or web page to open.

  <cMethod> is a character string value "POST" or "GET"

Returns: A character string consisting of the generated HTML tag.

Description:

  Generates Form begin tag with form attributes to start a form section.

  The generated string is always returned. The string will be written
  to standard-out depending on the value of StopWrite().
  The default StopWrite() value is FALSE. Setting the StopWrite() value
  to TRUE will suspend the write to standard-out.

  Must call terminating FormEnd() to end the form section.

Examples: :

  FormBeg( "frmMain", "../cgi-bin/MyCgi.exe", "POST" )
    <INPUT .....
    <INPUT .....
    <INPUT .....
  FormENd()

Online reference: Mikodocs Guide To HTML - Form Tutorial
Online reference: Mikodocs Guide To HTML - FORM tag


See Also: FormEnd()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson