An open API service indexing awesome lists of open source software.

https://github.com/julianamancera/lab-1_app_dev

Applications Development & Emerging Technologies - Laboratory 1
https://github.com/julianamancera/lab-1_app_dev

application-development emerging-technology

Last synced: about 1 month ago
JSON representation

Applications Development & Emerging Technologies - Laboratory 1

Awesome Lists containing this project

README

          

# Lab-1_App_Dev

## Instructions
        You will have some HTML in the starter code for this lesson. It contains a blog post with a title, author, and
body. Your job is to add a few variables to the file and use them to display the blog post. You can use the
same text/content or add new content. Define your variables at the top of the file and use them in the HTML
below.

- Add a variable called $title and set it to the title of the blog post and part of the title of the page.
- Add a variable called $author and set it to the author of the blog post.
- Add a variable called $body and set it to the body of the blog post.
- Add a variable called $pageTitle with the string "Brad's PHP Blog | and the title of the blog post.
- You can use concatenation or interpolation to combine the two strings. If you use concatenation, be
sure to escape the apostrophe/single quote in "Brad's".