function head ( $name ){
echo '<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>'.$name.'</title>
<script src="/libs/jquery.min.js"></script>
<script src="/scripts/ajax.js"></script>
<script src="/scripts/ajax-rdct.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="/style/pages.css" media="screen" rel="stylesheet">
</head>
<body>';}
function hello (){
echo 'Привет:)';}
<?php
function hello(){
return 'Привет';
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title><?= hello() ?></title>
<script src="/libs/jquery.min.js"></script>
<script src="/scripts/ajax.js"></script>
<script src="/scripts/ajax-rdct.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="/style/pages.css" media="screen" rel="stylesheet">
</head>
<body>
<?php
function head ( $name ){
echo '<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>';
hello();
echo '</title>
<script src="/libs/jquery.min.js"></script>
<script src="/scripts/ajax.js"></script>
<script src="/scripts/ajax-rdct.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="/style/pages.css" media="screen" rel="stylesheet">
</head>
<body>';}
<?php
function hello()
{
return 'Привет:)';
}
function head()
{
echo '<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>
' . hello() . '
</title>
<script src="/libs/jquery.min.js"></script>
<script src="/scripts/ajax.js"></script>
<script src="/scripts/ajax-rdct.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="/style/pages.css" media="screen" rel="stylesheet">
</head>
<body>';
}
head();
?>