J

Jared Torres - Back End Developer

  • Chapter 1 - Introducing Computer Programming
    • A computer program contains software, a set of instructions, to a computer’s processor to make it perform a task. It can be used to change text, transmit data, or control a piece of hardware, etc.

    • One of the most important things to do as a programmer is to document the requirements the client needs and give precise documentation. Software development requires a great amount of time to design the application visually before committing it and begin coding. It is crucial while developing and testing to make sure that the program is user friendly and easy to understand.

    • A programming language is a way for a developer to make commands to a computer’s processor and have it execute them. The instructions given in the language is referred to as the source code.

    • A compiled program is a file (.exe for example) is a set source code that is gathered up and executed by the end user that can’t change the code itself. Any updates to the file will require a new file to be created. An interpreted language requires an interpreter which will take the instructions, translate it into the machine language, and execute them. This is commonly used in web based applications and can be changed and updated quickly.

    • Standalone applications are programs that run off the local side of the computer only. Network applications are programs that use a server/client relationship to run and transmit data back and forth.

  • Chapter 2 - Client/Server Applications

  • Chapter 3 - From Requirements to Algorithms

  • Chapter 5 - Creating a Working Program

  • Chapter 6 - Saving and Retrieving Data

  • Chapter 7 - Introducing Selection Structures

  • Chapter 8 - Multiple Selection, Nesting, ANDs and ORs

  • Chapter 9 - Harnessing the Power of Repetition
  • Exercise 5

  • Chapter 10 - Introducing Event-Controlled Loops

  • Chapter 11 - Working With Arrays

  • Chapter 12 - Asoociative Arrays

  • Chapter 13 - Working With Functions

  • Chapter 14 - Working with MySQL

  • Chapter 15 - Introduction to Object-Oriented Programming

  • Chapter 16 - Where to go from Here...
    • In PHP you can use an 'echo' statement instead of print. Both ways work just the same.

    • .php files and .html files don't have to share the same name as long as they are linked together.

    • PHP is sort of similar to Java and C++ but they all use different syntax and methods.

    • Javascript and PHP are not the same but are frequently used together.