Buick,Ford,Chevy,Pontiac,Nissan,Honda
Frank Greg Jerome Gina Al Henry Stephanie Inga Chris
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../styles.css">
<title>PHP: Explode</title>
</head>
<body>
<h1 class="lesson-h1" >Explode() | Two Args (explode-on, string)</h1>
<?php
$string = "Buick,Ford,Chevy,Pontiac,Nissan,Honda";
echo "<h3 style='margin: 0;'>Before</h3>";
echo "<p>$string</p>";
echo "<h3 style='margin: 0;'>After explode()</h3>";
echo "<p>".var_dump(explode(',', $string))."</p>";
?>
<h2>One More Example</h2>
<?php
$customers = "Frank Greg Jerome Gina Al Henry Stephanie Inga Chris";
echo "<h3 style='margin: 0;'>Before</h3>";
echo "<p>$customers</p>";
echo "<h3 style='margin: 0;'>After explode()</h3>";
echo "<p>".var_dump(explode(' ', $customers))."</p>";
include('../show_code.php');
show_code('index.php');
?>
</body>
</html>