Esempio n. 1
0
function CreationOfGenre()
{
    echo '<div>
	<form action="index.php?action=insert_genre" method="post">
		Genre Abreviation: <input type="text" name="abv" value="" maxlength="5" /><br />
		Genre Description: <input type="text" name="desc" value="" maxlength="255" /><br />
		<input type="hidden" name="action" value="insert_genre" />
		<input type="submit" value="Submit" />
	<form>';
    flatmenu();
}
Esempio n. 2
0
function Foot()
{
    echo '</div></body>
	<div>
	<foot>' . flatmenu() . '</foot>
	 </div>
	<html>';
    CloseConnection();
}
Esempio n. 3
0
function AddCreditDebit()
{
    $items = GetItems("'W'");
    //"'D','W','I'"); //I?,
    echo '<div>
	<form action="index.php?action=submit_tran" method="post">
		Lot: ' . SelectLot($items, "lot") . '<br />
		Credit: <input type="text" name="crd" value="0.00" maxlength="255" /><br />
		Debit: <input type="text" name="dbt" value="0.00" maxlength="255" /><br />
		Note:  <input type="text" name="note" value="" /><br />
		<input type="hidden" name="action" value="submit_tran" />
		<input type="submit" value="Submit" />
	<form>';
    flatmenu();
}