PHP
php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
$width = 200;
$height = 200;
$frame_color = "red";
$frame_width = 2;
$frame_text = "HELLO WORLD!"
?>
<!DOCTYPE html>
<html>
<head>
<title>Php frame</title>
<style>
.frame {
width: <?=$width ?>px;
height: <?=$height ?>px;
border: <?=$frame_width ?>px solid <?=$frame_color ?>;
}
</style>
</head>
<body>
<div class="frame"><?=$frame_text ?></div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run