Files
freeCodeCamp/guide/russian/php/syntax/index.md
2018-10-16 21:32:40 +05:30

26 lines
763 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Syntax
localeTitle: Синтаксис
---
## Синтаксис
PHP - это язык, позволяющий включать динамический контент в другие статические веб-страницы. Он написан inline с html, просто переименуйте файл .html в .php (для установки веб-сервера должен быть установлен php).
```PHP
<!DOCTYPE html>
<html>
<head>
<title>PHP Example</title>
</head>
<body>
<h1>PHP Example</h1>
<?php
echo "Hello World from PHP!";
?>
</body>
</html>
```
#### Дополнительная информация:
* [php.net - Документация по PHP](https://secure.php.net/docs.php)