select('*') ->from('Country'); $results = $q->execute(); $results = $results->toArray(); $view = arg(2,$_REQUEST['q']); switch ($view) { case "add" : if (sizeof($_POST) > 0) { $frm = $_POST; insere_pays($frm); header("Location:".$_SERVER['HTTP_REFERER']); } break; } /****************************************************************************** * FONCTIONS *****************************************************************************/ function insere_pays($frm) { /* * Ajoute un nouveau Pays. * Les champs sont dans la variable $frm * */ $lib = htmlspecialchars($frm['lib'], ENT_QUOTES); $code = htmlspecialchars($frm['code'], ENT_QUOTES); require_once realpath(dirname(__FILE__)).'/mysql_inc.php'; $sql = "INSERT INTO country( code ,graydon_country ,lib ,status ) VALUES ( '$code' , '".$frm['graydon_country']."' , '$lib' , '".$frm['status']."' ) "; mysql_query($sql) or die("Une erreur de connexion à la base s'est produite " . __LINE__ . ".
" . mysql_error()); mysql_close($connexion); } ?>Libélé | Pays | Code | Status |
---|---|---|---|