ok, customers add items to their cart, then they fill out their customer info into a form. I'm using the mail function to email the data. Is there a
$message = '
First Name: ' . $firstName . '
Last Name: ' . $lastName . '
';
is there a way to use this while statement within a mail message?
while($row = odbc_fetch_array($result))
{echo $row["MaterialListID"];}
Any other suggestions on how to do it?