keep getting error that parameter 2 is null and can not be null OR Cannot pass parameter 2 by reference
thoughts are appreciated
I changed all the variable types to string (thus the 'sss....') just to make sure it wasn't an alignment issue
I have tried this code with and without quotes and single quotes, same issues.
if ($stmt->prepare("INSERT INTO service (firstname, lastname, email, phone, greeted_promptly, timely_completion, satisfied, recommend, eighteen_or_older, manager_contact) VALUES (?, ?, ?, ?,?, ?, ?,?, ?, ?)")) {
Print_r ($_SESSION);
$stmt->bind_param('ssssssssss', '$firstname', '$lastname', '$email', '$phone', '$greeted_promptly', '$timely_completion', '$satisfied', '$recommend', '$eighteen_or_older', '$manager_contact');
$stmt->execute();}