From f041798a948206739292cb1c390ae4bd02783274 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Thu, 26 Sep 2019 21:19:08 -0400 Subject: [PATCH] Comments in header file --- includes/header.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/includes/header.php b/includes/header.php index f985a86..50262e1 100644 --- a/includes/header.php +++ b/includes/header.php @@ -2,6 +2,9 @@ include('vendor/autoload.php'); +/* + * Define the function for API queries, etc. + */ function get_content($url) { @@ -27,6 +30,9 @@ function get_content($url) } +/* + * Identify the prefix for URL queries + */ if (!empty($_SERVER['HTTPS'])) { $api_url = 'https';