diff --git a/assignment_1/table_manager.html b/assignment_1/table_manager.html index fb7660c..3597f46 100644 --- a/assignment_1/table_manager.html +++ b/assignment_1/table_manager.html @@ -1,10 +1,48 @@ +INST377: Assignment 1 @@ -200,7 +238,38 @@ -
+
+ +

Assignment 1: Javascript

+ +

by Lyndon Ross II

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Organization Summary QuestionsAmount
How many non-profit organizations are listed?
How many organizations are less than 10 years old?
How many of these organizations are North American?
How many organizations used the 'Transportation' type of data?
How many organizations are located in ciites that do no belong to a State/Region?
+ + \ No newline at end of file diff --git a/html_css/external.css b/html_css/external.css new file mode 100644 index 0000000..a34700e --- /dev/null +++ b/html_css/external.css @@ -0,0 +1 @@ +h2 { text-align: center; color: darkmagenta} \ No newline at end of file diff --git a/html_css/images/HTML5_logo.png b/html_css/images/HTML5_logo.png new file mode 100644 index 0000000..8089f4d Binary files /dev/null and b/html_css/images/HTML5_logo.png differ diff --git a/html_css/index.html b/html_css/index.html new file mode 100644 index 0000000..cfcc3f2 --- /dev/null +++ b/html_css/index.html @@ -0,0 +1,32 @@ + + + + 377 World + + + + +

Hello World!

+

This is INST377 and we are learning HTML & CSS.

+

Translations of Greetings

+

English: Hello World.

+

Hawaiian: Aloha Houna

+

Luxembourgish: Moien Welt

+

Swahili: Salamu Dunia

+ +
    +
  1. English: Hello World.
  2. +
  3. Hawaiian: Aloha Houna
  4. +
  5. Luxembourgish: Moien Welt
  6. +
  7. Swahili: Salamu Dunia
  8. +
+ HTML5 Logo + + \ No newline at end of file diff --git a/php_databases/db_demo/organization.php b/php_databases/db_demo/organization.php index d354541..5a7426c 100644 --- a/php_databases/db_demo/organization.php +++ b/php_databases/db_demo/organization.php @@ -140,9 +140,15 @@ static function fetchTotalCount(mysqli $conn) { // TODO #1: Implement a function to save an new organization // return number of rows inserted - + public function insert(mysqli $conn) { + $stmt = $conn->prepare("INSERT INTO") + } + // TODO #2: Implement a function to delete an organization. // return number of rows deleted + public function delete(mysqli $conn) { + + } // TODO #3: Implement a function to save changes to an existing organization // return number of rows updated