hello i have this code
function sm($user_id,$message,$token) {
$url = 'https://api.telegram.org/bot'.$token.'/sendMessage?chat_id='.$user_id.'&text='.$message;
$update = file_get_contents($url);
}
it error is Parse error: syntax error, unexpected 'function' (T_FUNCTION)
what is wrong?? thanks all