AccessRequest($cn,SUPPL);
?>
remove();
$sub_action="list";
}
//-----------------------------------------------------
// Add card
if ( $sub_action=="insert" )
{
$retour=sprintf('',
urldecode($_REQUEST['url']));
$supplier=new Supplier($cn);
$supplier->Save($_REQUEST['fd_id']);
echo $retour;
echo "
';
echo '
';
echo $sup->Summary($search);
echo '
';
echo '
';
}
//-----------------------------------------------------
// Show Detail
if ( $sub_action == 'detail' )
{
$f_id=$_REQUEST['f_id'];
echo '';
$sup=new Supplier($cn,$f_id);
$retour=sprintf('
',
urldecode($_REQUEST['url']));
echo $retour;
echo '
';
echo $retour;
echo '
';
}
html_page_stop();
?>