$(document).on('change focusout', '.js-input', function () { // ... })
curl_setopt_array($myCurl, array(
CURLOPT_URL => 'http://gate.smsaero.ru/send/?',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query(array(
'to' => PHONENUMBER,
'user' => EMAIL,
'text' => $name . ' ' . $tel,
'password' => PASSWORD,
'from' => REKLAMA,
))
));
$response = curl_exec($myCurl);
$url = 'http://gate.smsaero.ru/send/?to=PHONENUMBER&user=EMAIL&text=$name%20$tel&password=PASSWORD&from=REKLAMA';
$url = "http://gate.smsaero.ru/send/?to=PHONENUMBER&user=EMAIL&text=$name%20$tel&password=PASSWORD&from=REKLAMA";
$url = 'http://gate.smsaero.ru/send/?to=PHONENUMBER&user=EMAIL&text=' . $name . '...
если только что установили, то попробуйте перезагрузить веб-сервер.
sudo service apache2 reload или
sudo service apache2 restart