Skip to content

Commit 103aac3

Browse files
committed
1st php code
0 parents  commit 103aac3

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

sample.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
$x = 6;
3+
$y = 4;
4+
echo $x + $y;"\n";
5+
6+
7+
$a = 20;
8+
$b = 5;
9+
echo $a - $b;"\n";
10+
11+
$p = 30;
12+
$r = 25;
13+
echo $p * $r;"\n";
14+
15+
?>

0 commit comments

Comments
 (0)