I have this problem when I did some php and try to call this function again can anybody help?
PHP Parse error: syntax error, unexpected T_STRING on line 12
Code:
<?php
function greetings($name) {
echo "Greetings, " . $name . "!";
}
$n = "Magnus"
greetings($n);
?>