- or download this
if ( $mode eq "add" ) {
# print add page form
...
if ( $mode eq "save" ) {
# save add form infos
}
- or download this
print hidden( 'mode' , 'save' );
- or download this
<input type="hidden" name="mode" value="add" />
- or download this
print hidden( 'mode' , 'save' );
- or download this
<input type=hidden name=mode value=save />
- or download this
$query -> delete('mode');
$query -> delete_all();