Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.     error_reporting(E_ALL);
  3.     ini_set("display_errors", 1);
  4.     include_once $_SERVER['DOCUMENT_ROOT'].'/models/country.class.php';
  5.     if( isset($_GET['oper']) ) {
  6.         $oper = $_GET['oper'];
  7.         if($oper === 'add') {
  8.             //добавление страны в бд
  9.             $data = $_POST;
  10.             $data['create_date'] = Date("Y-m-d H:i:s");
  11.             $country_class = new Country();
  12.             $country_class->add($data);
  13.         }
  14.        
  15.        
  16.     }
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement