You are here

function form_open in TinyBrowser 7

4 calls to form_open()
edit.php in tinybrowser/edit.php
folders.php in tinybrowser/folders.php
tinybrowser.php in tinybrowser/tinybrowser.php
upload.php in tinybrowser/upload.php

File

tinybrowser/fns_tinybrowser.php, line 228

Code

function form_open($name, $class, $url, $parameters) {
  ?><form name="<?php

  echo $name;
  ?>" class="<?php

  echo $class;
  ?>" method="post" action="<?php

  echo $url . $parameters;
  ?>">
<?php

}