Zyzagy
2010-05-23 18:35:23 UTC
require "connect_to_mysql.php";
$category = $_POST['category'];
$title = $_POST['title'];
$price = $_POST['price'];
$description = $_POST['description'];
$personname = $_POST['personname'];
$email = $_POST['email'];
$url = $_POST['url'];
$date = date('js');
$sqlCommand = "INSERT INTO information (ctgy, title, price, desc, personname, email, url)
VALUES ($category', '$title', '$price', '$desc', '$personname', '$email', '$url')";
$query = mysqli_multi_query($link, $sqlCommand) or die;