Currently creating a registration function to my site.
I am having trouble troubleshooting the problem of none of my information being added to the db. I have pinpointed the problem to this block of code.
$query = "INSERT INTO 'client'
VALUES(
{$fname}, {$lname}, {$email}, {$hash_password}, {$company}, {$phone}, {$industry}, {$relationship}, {$country}, {$city}
)";
$result = mysql_query($query, $connection);