classwork
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Day 6</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Hello cruel world!</h1>
|
||||
<form>
|
||||
<?php
|
||||
echo '<input type="text" placeholder="Lorem ipsum">
|
||||
<input type="text" placeholder="dolor">';
|
||||
|
||||
?>
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
$person = array(10 => 'beavis', 'jones');
|
||||
|
||||
echo '<h4>';
|
||||
foreach ($person as $key => $p)
|
||||
echo "<h4>$key - $p</h4>";
|
||||
echo '</h4>';
|
||||
?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<h1>beavis</h1><h1>butthead</h1>
|
||||
<h1>beavis</h1><h1>butthead</h1>
|
||||
<h1>butthead</h1><h1>and</h1>
|
||||
beavisandbutthead
|
||||
<h1>beavisandbutthead</h1>
|
||||
Reference in New Issue
Block a user