I don't know what I'm doing wrong here. I'm trying to hard-code a form handling php script so I can insert a new record.
require_once('connection_script');
mysql_select_db($database_Connection, $connection_script);
$sql = "INSERT INTO tickets (company) VALUES ('$companyKey')";
include 'support.php';
The original script is a little more elaborate, but I've been stripping it down, and even this doesn't seem to work. Is there something fundamentally wrong here?