Ответы пользователя по тегу PHP
  • Объединить две функции?

    @justvlad
    Так:

    <?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();
    
    ?>
    Ответ написан
    Комментировать