-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_var.php
More file actions
37 lines (37 loc) · 1.2 KB
/
string_var.php
File metadata and controls
37 lines (37 loc) · 1.2 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<pre>
<?php
echo "\ncode"."academy";
echo "\nMy name is:"."Yash";
echo"\n"."tur"."duck"."en";
$biography= "\n i am coding cositace for better coder";
$name ="harry";
$language="hindi";
echo"\n hi, my name is $name, how are you buddys";
echo"\n $language is the coding language learn to in youtub";
$noun="lion";
$adjective="fluffy";
$verb="roars";
echo"\nthe world's most beloved $noun was very $adjective and love to $adjective every single day $verb ";
$movie="the lion king";
$old_favorite=$movie;
echo"i'm a fickle person,my favourite movie used to be $movie";
$movie="Inception";
echo "\nbut now my favourite is $movie.";
echo"\nmy favourite movie was $old_favorite";
$sentence ="\nI'm going on a picnic, and I'm taking apples";
echo $sentence;
$very_bad_unclear_name = "15 chicken wings";
$order = &$very_bad_unclear_name;
$order .= " and a side of fries";
echo "\nYour order is: $very_bad_unclear_name.";
?>
</body>
</html>