I am having trouble getting this to work. I am getting "Parse error: syntax error, unexpected T_STRING in public_html/send.php on line 22. Line 22 is the mail statement I highlighted red.
If anyone can help me out I would be very grateful.
<?php
$to='dgordon1966@gmail.com';
$subject='Registration Confirmation';
$number=$_POST;
$name=$_POST;
$body= .$name. .$number.
mail ($to, $subject, $body);
echo 'Thanks for registering. See you soon!';
?>