sagaida

save-car.php

Aug 19th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?
  2.     $data = $_POST;
  3.    
  4.     extract($data);
  5.     include_once '/connect.php';
  6.    
  7.     $created = Date("Y-m-d H:i:s");
  8.     $sql = "INSERT INTO `cars` (model, speed, year, body, country, created) VALUES ( '$model', '$speed', '$year', '$body', '$country', '$created' )";
  9.    
  10.     $result = $pdo->query($sql);
  11.     var_dump($result);
Add Comment
Please, Sign In to add comment