When I try to submit my form data,I get this error, ( ! ) Parse error: syntax error, unexpected '$rnum' (T_VARIABLE) in C:\wamp64\www\w eb\insert.php on line 41

This is the part that seems to have an issue. Kindly help:
Code:
//prepare statements
$stmt=$conn->prepare($SELECT);
$stmt->bind_param("s", $email);
$stmt->execute();
$stmt->bind_result($email);
$stmt->store_result
...