forked from codigoconjuan/PHP_Introduction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
07_vardump.php
35 lines (28 loc) · 980 Bytes
/
07_vardump.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
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Introduction to PHP</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,900&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Up & Running with PHP</h1>
<div class="code-content">
<?php
$student = array(
'first_name' => 'Juan',
'last_name' => 'De la torre',
'country_name' => 'Mexico',
'age' => 29,
'user_logged_in' => true
);
echo "<pre>";
print_r($student);
echo "</pre>";
?>
</div>
</div>
</body>
</html>