<?php
$username = "dcatkin";
$password = "hellfire";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
$selected = mysql_select_db("cars",$dbh)
or die("Could not select cars");
$args->arg_type[0] = $result;
$args->arg_type[1] = "$Make, $Year, $Model, $Price, $Description, $Name, $Address, $Email, $Phone, $URL";
$result = mysql_query("SELECT Make, Year, Model, Price, Description, Name, Address, Email, Phone, URL FROM Cars");
$result = array('Year, Price, Description, Name, Address, Email, Phone, URL');
$mysql_fetch_array = ($result);
$Make = $_GET["Make"];
$Year = $_GET["Year"];
$Model = $_GET["Model"];
$Price = $_GET["Price"];
$Description = $_GET["Description"];
$Name = $_GET["Name"];
$Address = $_GET["Address"];
$Email = $_GET["Email"];
$Phone = $_GET["Phone"];
$URL = $_GET["URL"];
include("template.php");
mysql_close($dbh);
?>
http://hp-car.com/cars/search/search.php
It gets me because it has no errors.