php2022



Resources



Things to find out



Navigation to the phpMyAdmin page in GoDaddy

  1. Logon to GoDaddy
  2. Scroll down to "Web Hosting" and click the "Manage" button, you might have to click a down arrow first
  3. Displaying on this page is a notice: PHP 8.1 is now available! With an "Upgrade" link.
  4. there is a panel titled "Tools", within that panel is "phpMyAdmin" link:
  5. here you can see your tables, Version information, Database client information, and links for "Documentation"


phpMyAdmin page in GoDaddy

Database server

Web server

phpMyAdmin



Connecting to the pettCatalog mysql database

4 things needed to connect

  1. $user="pettCatalog";
  2. $host="p50mysql227.secureserver.net";
  3. $password="Msfmsf01";
  4. $database = "pettCatalog";
Count Original Connection Info New Connection Info  Reserve  Reserve  Reserve 
1 $user="pettCatalog"; $user="pettCatalog"; reserve reserve reserve
2 $host="p50mysql227.secureserver.net"; $host="localhost"; reserve reserve reserve
3 $password="Msfmsf01"; $password="Msfmsf01"; reserve reserve reserve
4 $database = "pettCatalog"; $database = "pettCatalog"; reserve reserve reserve

Test Chapter 8 PHP Programs List

    Count | Page | Program | Description
  1. 000 | test00.php - Tested two different version sttms for MySql and one version sttm for PHP. Based on test03.php
  2. 189 | test01.php - Connect to a database, Display the database Name, then Close the database. Display a status as the program runs.
  3. 191 | test02.php - Connect to a server without a database-(db) chosen, Connect to petCatalog db, Connect to memberDirectory db, Close memberDirectory db, Close petCatalog db.
  4. 194 | test03.php - Connect to petCatalog, Run a SQL query, then close petCatalog, all with a running status.
  5. 196 | test04.php - Connect to memberDirectory, Queried the member table, Close memberDirectory.
  6. 197 | test05.php - just like test04.php, accept its using the extract($row) function
  7. 198 | test06.php - Connect to petCatalog, Run a SQL query, While loop-display petType and petName, Close petCatalog
  8. 199 | petDisplay1.php - reserve for definition
  9. 199 | petDisplay-4g.php - Connect to petCatalog, Run a SQL query, (While loop-display in a HTML Table, if petType=horse display petName and petDescription), Close petCatalog
  10. 201 | petDescriptionFor1.php - Connect to petCatalog, Run a SQL query, displays a numbered list with the for loop, (if petType=horse display petName and petDescription), Close petCatalog
  11. 202 | getdata1.php - the connection, query, and result is built into the function
  12. 202 | getdata-4g.php - the connection is made outside the function
  13. 204 | getPets1.php - uses a function named "getPetsOfType" that gets all pets of a specific type
  14. 206 | test07.php - example of using a Form in echo sttms, and uses "processform.php" to process data entered from the form
  15. 206 | test08.php - example of using a plain static Form, and uses "processform.php" to process data entered from the form
  16. 208 | processform.php - should not be run by itself, is ran when the user clicks the Submit button from the form, from test07.php or test08.php
  17. 210 | displayForm.php - example of a Form that has many (4) fields and a Submit button, uses checkAll.php to edit and verify that good data entered
  18. 210 | checkAll.php - should not be run by itself. Program checks all the form fields for blank fields and incorrect format.
  19. 210 | test09.php - Script displays a form that asks for the customer phone number, and calls on checkAll01.php to edit.
  20. 210 | checkAll01.php - should not be run by itself. Program checks all the form fields for blank fields and incorrect format.
  21. 213 | displayAddress01.php - Script displays a form with address information obtained from the database.
  22. 215 | drop-down menu and a submit button - the filled "selection list" aka "drop-down menu", and the "submit button",
  23. 216 | buildSelect01.php - Program builds a selection list from the database.
  24. 218 | dateSelect.php - displays the current date and gives you three drop-down list for display only: month, day, year
  25. 221 | buildRadio01.php - uses processform.php, Program displays a list of radio buttons from database info.
    I cannot locate the following files/programs:
  1. 000 | buildCheckbox01.php - I can't find the buildCheckbox01.php file, reserve for definition
  2. 000 | checkBlank.php - should not be run by itself, reserve for definition
  3. 000 | displayForm01.php - definition
  4. 000 | checkAll03.php - should not be run by itself, reserve for definition
  5. 000 | displayForm03.php - definition
  6. 000 | displayForm03m.php - definition
  7. 000 | displayTwoButtons.php - definition
  8. 000 | displayPhone01.php - definition
  9. 000 | displayPhone_func01.php - definition
  10. 000 | updatePhone.php - should not be run by itself ??, reserve for definition
  11. 000 | displayPhone02.php - definition
  12. 000 | test10.php - definition


Using PHP with a Camera

Articles

  1. www.kirupa.com/html5 | Article and Video | Accessing Your Webcam in HTML || VideoStreamExplained
  2. www.wpbeginner.com | Article | 06/29/22 | How to Easily Add Custom CSS to Your WordPress Site
dws0010   dws0011

What About IP Cameras



Different PHP Learning Sources

(1) Brooklyn Library

(2) PHP and MySQL - my old "Data In / Data Out" page

(3) Veezi Learning Doc - learning Veezi API's with PHP page

(4) w3schools / php

(5) php.net

(6) YouTube Search: learning php



Reserve