mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
if(rand(0, 1)) {
|
|
?>
|
|
<div style='color:green'><?= "Истина"; ?></div>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<div style='color:red'><?= "Ложь" ?></div>
|
|
<?php
|
|
}
|