Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Brittany Davis||Chief Brand Officer||Brittany.Davis@email.com||<img src="images/brittany.png" alt = "Brittany" height ="400" width = "400">
  2. John David||Chief Financial Officer||John.David@email.com||<img src="images/john.png" alt = "John" height ="400" width = "400">
  3. Tyler Cunningham||Chief Commercial Officer||Tyler.Cunningham@email.com||<img src="images/tyler.png" alt = "Tyler" height ="400" width = "400">
  4.  
  5. <?php
  6. $file = file('includes/text-driven.txt');
  7. foreach($file as $line) {
  8. list($name,$title,$email,$image)=explode("||", $line);
  9. echo "<h2>$name</h2>";
  10. echo $image;
  11. echo "<p><b>Job Title:</b> $title<p>";
  12. echo "<p><b>Email Address:</b> $email</p><hr>";
  13. }
  14. ?>
  15.  
  16. Person's name
  17. Person's photo
  18. Person's job title
  19. Person's email
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement