freeCodeCamp/guide/russian/php/syntax/index.md

26 lines
763 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
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)