本文整理汇总了PHP中bd::Ajout方法的典型用法代码示例。如果您正苦于以下问题:PHP bd::Ajout方法的具体用法?PHP bd::Ajout怎么用?PHP bd::Ajout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bd
的用法示例。
在下文中一共展示了bd::Ajout方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bd
<!DOCTYPE html>
<?php
include_once 'user.php';
include_once 'bd2.php';
include_once 'FormUser.php';
include_once 'Affichage.php';
$mabd = new bd();
$monform = new FormUser();
if (isset($_POST['ajout'])) {
if ($_POST['id'] == '' || !$mabd->Ajout(new user($_POST['id'], $_POST['nom'], $_POST['prenom'], $_POST['date']))) {
exit('Ajout impossible');
}
}
if (isset($_GET['aeffacer'])) {
if (!$mabd->Efface($_GET['aeffacer'])) {
exit('Suppression impossible');
}
}
if (isset($_POST['modif'])) {
$u = new user($_POST['id'], $_POST['nom'], $_POST['prenom'], $_POST['date']);
if (!$mabd->Update($u)) {
exit('Modification impossible');
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="default.css" rel="stylesheet" type="text/css" media="screen" />
<title>Liste des user avec Class</title>
</head>