Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
€8.99 | ALL EBOOKS & VIDEOS
Save more on purchases! Buy 2 and save 10%, Buy 3 and save 15%, Buy 5 and save 20%
PHP and Algorithmic Thinking for the Complete Beginner
PHP and Algorithmic Thinking for the Complete Beginner

PHP and Algorithmic Thinking for the Complete Beginner: Learn to think like a programmer by mastering PHP and algorithmic thinking.

By Aristides Bouras
€7.99
Book Jun 2024 938 pages 1st Edition
eBook
€7.99
Subscription
€14.99 Monthly
eBook
€7.99
Subscription
€14.99 Monthly

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now
Table of content icon View table of contents Preview book icon Preview Book

PHP and Algorithmic Thinking for the Complete Beginner

Part I
Introductory Knowledge

Chapter 1
How a Computer Works

1.1 Introduction

In today's society, almost every task requires the use of a computer. In schools, students use computers to search the Internet and to send emails. At work, people use them to make presentations, to analyze data, and to communicate with customers. At home, people use computers to play games, to connect to social networks and to chat with other people all over the world. Of course, don't forget smartphones such as iPhones. They are computers as well!

Computers can perform so many different tasks because of their ability to be programmed. In other words, a computer can perform any job that a program tells it to. A program is a set of statements (often called instructions or commands) that a computer follows in order to perform a specific task.

Programs are essential to a computer, because without them a computer is a dummy machine that can do nothing at all. It is the program that actually tells the computer what to do and when to do it. On the other hand, the programmer or the software developer is the person who designs, creates, and often tests computer programs.

This book introduces you to the basic concepts of computer programming using the PHP language.

1.2 What is Hardware?

The term hardware refers to all devices or components that make up a computer. If you have ever opened the case of a computer or a laptop you have probably seen many of its components, such as the microprocessor (CPU), the memory, and the hard disk. A computer is not a device but a system of devices that all work together. The basic components of a typical computer system are discussed here.

The Central Processing Unit (CPU)

This is the part of a computer that actually performs all the tasks defined in a program (basic arithmetic, logical, and input/output operations).

Main Memory (RAM – Random Access Memory)

This is the area where the computer holds the program (while it is being executed/run) as well as the data that the program is working with. All programs and data stored in this type of memory are lost when you shut down your computer or you unplug it from the wall outlet.

Main Memory (ROM – Read Only Memory)

ROM or Read Only Memory is a special type of memory which can only be read by the computer (but cannot be changed). All programs and data stored in this type of memory are not lost when the computer is switched off. ROM usually contains manufacturer's instructions as well as a program called the bootstrap loader whose function is to start the operation of computer system once the power is turned on.

Secondary Storage Devices

This is usually the hard disk or the SSD (Solid State Drive), and sometimes (but more rarely) the CD/DVD drive. In contrast to main memory (RAM), this type of memory can hold data for a longer period of time, even if there is no power to the computer. However, programs stored in this memory cannot be directly executed. They must be transferred to a much faster memory; that is, the main memory.

Input Devices

Input devices are all those devices that collect data from the outside world and enter them into the computer for further processing. Keyboards, mice, and microphones are all input devices.

Output Devices

Output devices are all those devices that output data to the outside world. Monitors (screens) and printers are output devices.

1.3 What is Software?

Everything that a computer does is controlled by software. There are two categories of software: system software and application software.

System software is the program that controls and manages the basic operations of a computer. For example, system software controls the computer's internal operations. It manages all devices that are connected to it, and it saves data, loads data, and allows other programs to be executed. The three main types of system software are:
the operating system. Windows, Linux, macOS, Android, and iOS are all examples of operating systems.
the utility software. This type of software is usually installed with the operating system. It is used to make the computer run as efficiently as possible. Antivirus utilities and backup utilities are considered utility software.
the device driver software. A device driver controls a device that is attached to your computer, such as a mouse or a graphic card. A device driver is a program that acts like a translator. It translates the instructions of the operating system to instructions that a device can actually understand.
Application software refers to all the other programs that you use for your everyday tasks, such as browsers, word processors, notepads, games, and many more.

1.4 How a Computer Executes (Runs) a Program

When you turn on your computer, the main memory (RAM) is completely empty. The first thing the computer needs to do is to transfer the operating system from the hard disk to the main memory.

After the operating system is loaded to main memory, you can execute (run) any program (application software) you like. This is usually done by clicking, double clicking, or tapping the program's corresponding icon. For example, let's say you click on the icon of your favorite word processor. This action orders your computer to copy (or load) the word processing program from your hard disk to the main memory (RAM) so the CPU can execute it.

Programs are stored on secondary storage devices such as hard disks. When you install a program on your computer, the program is copied to your hard disk. Then, when you execute a program, the program is copied (loaded) from your hard disk to the main memory (RAM), and that copy of the program is executed.

The terms “run” and “execute” are synonymous and can be used interchangeably.

1.5 Compilers and Interpreters

Computers can execute programs that are written in a strictly defined computer language. You cannot write a program using a natural language such as English or Greek, because your computer won't understand you!

But what does a computer actually understand? A computer can understand a specific low-level language called the machine language. In a machine language all statements (or commands) are made up of zeros and ones. The following is an example of a program written in a machine language, that calculates the sum of two numbers.

0010 0001 0000 0100
0001 0001 0000 0101
0011 0001 0000 0110
0111 0000 0000 0001

Shocked? Don't worry, you are not going to write programs this way. Hopefully, no one writes computer programs this way anymore. Nowadays, all programmers write their programs in a high-level language and then they use a special program to translate them into a machine language.

A high-level language is one that is not limited to a particular type of computer.

There are two types of programs that programmers use to perform translation: compilers and interpreters.

A compiler is a program that translates statements written in a high-level language into a separate machine language program. You can then execute the machine language program any time you wish. After the translation, there is no need to run the compiler again unless you make changes in the high-level language program.

An interpreter is a program that simultaneously translates and executes the statements written in a high-level language. As the interpreter reads each individual statement in the high-level language program, it translates it into a machine language code and then directly executes it. This process is repeated for every statement in the program.

1.6 What is Source Code?

The statements (often called instructions or commands) that the programmer writes in a high-level language are called source code or simply code. The programmer first types the source code into a program known as a code editor, and then uses either a compiler to translate it into a machine language program, or an interpreter to translate and execute it at the same time.

Source code can even be written in a simple text editor!

1.7 Review Questions: True/False

Choose true or false for each of the following statements.

1)Modern computers can perform so many different tasks because of their ability to be programmed.
2)A computer can operate without a program.
3)A hard disk is an example of hardware.
4)Data can be stored in main memory (RAM) for a long period of time, even if there is no power to the computer.
5)Data is stored in main memory (RAM), but programs are not.
6)Speakers are an example of an output device.
7)Windows and Linux are examples of software.
8)A device driver is an example of hardware.
9)A media player is an example of system software.
10)When you turn on your computer, the main memory (RAM) already contains the operating system.
11)When you open your word processing application, it is actually copied from a secondary storage device to the main memory (RAM).
12)In a machine language, all statements (commands) are a sequence of zeros and ones.
13)Nowadays, a computer cannot understand zeros and ones.
14)Nowadays, software is written in a language composed of ones and zeros.
15)Software refers to the physical components of a computer.
16)The compiler and the interpreter are software.
17)The compiler translates source code to an executable file.
18)The interpreter creates a machine language program.
19)Considering that a program might be executed multiple times, after it has been translated through interpretation and executed once, the need for the interpreter becomes obsolete.
20)Source code can be written using a simple text editor.
21)Source code can be executed by a computer without compilation or interpretation.
22)A program written in machine language requires compilation (translation).
23)A compiler translates a program written in a high-level language.

1.8 Review Questions: Multiple Choice

Select the correct answer for each of the following statements.

1)Which of the following is not computer hardware?
a)a hard disk
b)a DVD disc
c)a sound card
d)the main memory (RAM)
2)Which of the following is not a secondary storage device?
a)a DVD reader/writer device
b)a Solid State Drive (SSD)
c)a USB flash drive
d)RAM
3)Which one of the following operations cannot be performed by the CPU?
a)Transfer data to the main memory (RAM).
b)Transfer data from the main memory (RAM).
c)Perform arithmetic operations.
d)Surgical operations.
4)A touch screen is
a)an input device.
b)an output device.
c)both of the above
5)Which of the following is not software?
a)Windows
b)Linux
c)iOS
d)a video game
e)a web browser
f)All of the above are software.
6)Which of the following statements is correct?
a)Programs are stored on the hard disk.
b)Programs are stored on USB flash drives (USB sticks).
c)Programs are stored in main memory (RAM).
d)All of the above are correct.
7)Which of the following statements is correct?
a)Programs are executed directly from the hard disk.
b)Programs are executed directly from a DVD disc.
c)Programs are executed directly from the main memory (RAM).
d)All of the above are correct.
e)None of the above is correct.
8)Programmers cannot write computer programs in
a)machine language.
b)natural language such as English, Greek, and so on.
c)PHP.
9)A compiler translates
a)a program written in machine language into a high-level language program.
b)a program written in a natural language (English, Greek etc.) into a machine language program.
c)a program written in high-level computer language into a machine language program.
d)none of the above
e)all of the above
10)Machine language is
a)a language that machines use to communicate with each other.
b)a language made up of numerical instructions that is used directly by a computer.
c)a language that uses English words for operations.
11)In a program written in high-level computer language, if two identical statements are one after the other, the interpreter
a)translates the first one and executes it, then it translates the second one and executes it.
b)translates the first one, then translates the second one, and then executes them both.
c)translates only the first one (since they are identical) and then executes it twice.

Chapter 2
PHP and Integrated Development Environments

2.1 What is PHP?

PHP is a widely used open source server-side scripting language that is especially suited for web development and can be combined with HTML. “Server side” means that scripts written in PHP can be executed by a web server, such as Apache or IIS, with a PHP module installed.

While the acronym PHP originally stood for Personal Home Page, it now stands for “PHP: Hypertext Preprocessor.”

2.2 What is the Difference Between a Script and a Program?

Technically speaking, a script is interpreted whereas a program is compiled, but this is actually not their major difference. There is another more important difference between them!

The main purpose of a script written in a scripting language such as PHP, JavaScript, or VBA (Visual Basic for Applications) is to control another application. So you can say that, in some ways , PHP controls the web server, JavaScript controls the web browser, and VBA controls a Microsoft® Office application such as MS Word or MS Excel.

On the other hand, a program written in a programming language such as Java, C++, or C# (to name a few) executes independently of any other application. A program is executed as stand-alone any time the user wishes without the need of a hosting application.

Macros of Microsoft Office are scripts written in VBA. Their purpose is to automate certain functions within Microsoft Office.

A lot of people think that JavaScript is a simplified version of Java but in fact the similarity of the names is just a coincidence.

A script cannot be executed as stand-alone. It requires a hosting application in order to execute.

2.3 Why You Should Learn PHP

PHP is what is known as a “high-level” computer language. It is a powerful server-side scripting language available on even the most affordable shared hosting servers. Some of the biggest websites on the Internet, including Facebook and Wikipedia, are built with PHP. Furthermore, the most popular Content Management Systems (CMS) such are Drupal, WordPress, and Joomla are written in PHP.

PHP's coding style is similar to C language. It is quite easy to understand and highly efficient on multiple platforms such as Windows, Linux, and Unix. PHP is a flexible and powerful language, making it well-suited for developing dynamic web pages.

One of PHP's capabilities is the ability to interact with the file system of a computer. PHP can create files, write in files, or read the contents from files. It can also create directories (folders), copy files, delete files, rename files, or even change file attributes. Although PHP was originally designed to work in web pages, its ability to perform almost any task related to the file system makes it suitable even for system administration tasks. For example, you can create a PHP script to back up your files or a script that processes text files by reformatting their contents.

Moreover, PHP can execute system commands or any other program installed on your system. Thus, programs written and compiled in C, C++, Perl, or any other computer language can be executed from PHP and PHP can make use of their output. This enables you to add functionality to your scripts without spending time rewriting your old programs.

With a huge community of developers worldwide, PHP enables efficient development of many exciting web applications, websites, extensions and themes for Drupal, WordPress and Joomla, to name a few. This huge availability of PHP programmers is a major reason why organizations choose PHP for new development over any other programming/scripting language. This is also a very good reason why you should actually learn PHP!

2.4 How PHP Works

Computers do not understand natural languages such as English or Greek, so you need a computer language such as PHP to communicate with them. PHP is a very powerful high-level computer language. The PHP interpreter converts PHP code into a language that computers can understand, known as “machine language”.

The PHP interpreter comes in two flavors—the one that can be used with websites, and the other, which you can run from the command line (CLI: Command Line Interface). The latter is the one that this book actually uses.

To write and execute PHP scripts, you need to install PHP CLI, XDEBUG and an Integrated Development Environment (IDE). The IDE is necessary for writing PHP scripts, while PHP CLI and XDEBUG are required for executing and debugging them.

2.5 Integrated Development Environments

An Integrated Development Environment, or IDE, is a type of software that includes all the basic tools programmers need to write and test programs. An IDE typically contains a source code editor and integrates tools such as a compiler or an interpreter, along with a debugger. Visual Studio Code is an example of IDE that let programmers write, execute and debug their source code.

A “debugger” is a tool that helps programmers to find and correct many of their mistakes.

2.6 Visual Studio

Microsoft Visual Studio is an Integrated Development Environment (IDE) that provides a great set of tools for many programming (or scripting) languages (via extensions installed separately) and lets you easily create applications for Android, iOS, macOS, Windows, and the cloud, as well as websites, web applications, and web services.

Visual Studio is much more than a text editor. It can indent lines, match words and brackets, and highlight source code that is written incorrectly. It also provides automatic code (IntelliSense®), which means that as you type, it displays a list of possible completions. The IDE also provides hints to help you analyze your code and find any potential problems. It even suggests some simple solutions to fix those problems. You can use the Visual Studio not only to write but also to execute and debug your programs directly from the IDE.

Visual Studio has a large community of users all around the world and this is why it comes in so many different flavors. Specifically, in Microsoft's download page you can download:

Visual Studio (Community, Professional, or Enterprise), which runs on Windows
Visual Studio for Mac, which runs on macOS
Visual Studio Code, which runs on Windows, macOS, and Linux

In the next chapter (Chapter 3), you will find links guiding you to instructions on how to install and configure whatever is necessary on your computer, such as the PHP CLI interpreter, XDEBUG and Visual Studio Code, on either Windows or Linux. Then, in Chapter 9, you will discover guidance on using Visual Studio Code to write, execute and debug PHP scripts. These instructions are available on my website. Additionally, you will find numerous tips and tricks there that will be valuable in your first steps as a budding programmer!

Chapter 3
Software Packages to Install

3.1 What to Install

For the purposes of this book, you need to install PHP CLI, XDEBUG and an Integrated Development Environment (IDE) such as Visual Studio Code on your computer.

All the instructions you need regarding how to set up PHP CLI, XDEBUG and Visual Studio Code, on either Windows or Linux are maintained on my website at the following addresses. This gives me the flexibility to review them frequently and keep them up-to-date.

https://tinyurl.com/5n7xym8f

https://www.bouraspage.com/php-setup-write-execute-debug

Image

If you find any inconsistencies, please let me know, and I will update the instructions as soon as possible. To report issues, visit one of the following addresses:

https://tinyurl.com/28nwh2nf

https://www.bouraspage.com/report-errata

Image

Currently, all you need is to install PHP CLI, XDEBUG and Visual Studio Code. Instructions on my website regarding how to write, execute, and debug a PHP script are unnecessary at this stage. You will require these instructions when you reach Chapter 9.

Review in “Introductory Knowledge”

Review Crossword Puzzles

1)Solve the following crossword puzzle.

Image

Across

1) Statements or commands.

3) Windows is such a system.

4) A computer component.

6) A category of software.

8) An input device.

11) It's the person who designs computer programs.

14) An output device.

15) Antivirus is such a software.

16) In today's society, almost every task requires the use of this device.

17) A computer component.

18) All these devices make up a computer.

Down

2) These devices are also computers.

5) Computers can perform so many different tasks because of their ability to be _____________.

7) Special memory that can only be read.

9) A secondary storage device.

10) A browser is this type of software.

12) An input device.

13) An operating system.

2)Solve the following crossword puzzle.

Image

Across

2) The CPU performs one of these basic operations.

4) A scripting language.

6) A set of statements.

10) A low-level language.

12) This software controls a device that is attached to your computer.

13) The statements that a programmer writes to solve a problem.

Down

1) A category of programming language.

3) A program that simultaneously translates and executes the statements written in a high-level language.

5) A program that translates statements written in a high-level language into a separate machine language program.

7) In a machine language all statements are made up of zeros and _____.

8) All data stored in this type of memory are lost when you shut down your computer.

9) Run a program.

11) Visual Studio is such a software.

3)Solve the following crossword puzzle.

Image

Across

1) PHP can execute _________ commands.

4) Scripts written in VBA.

6) It performs logical operations.

7) A scripting language that can control Microsoft Word.

8) It displays data to the user.

9) One of PHP's capabilities is the ability to interact with the _____ system of a computer.

Down

2) An input device.

3) A script requires a __________ application in order to execute.

5) PHP is suitable for developing ________ web pages.

Review Questions

Answer the following questions.

1)What is hardware?
2)List the five basic components of a typical computer system.
3)What does the “bootstrap loader” program do?
4)Which part of the computer actually executes the programs?
5)Which part of the computer holds the program and its data while the program is running?
6)Which part of the computer holds data for a long period of time, even when there is no power to the computer?
7)How do you call the device that collects data from the outside world and enters them into the computer?
8)List some examples of input devices.
9)How do you call the device that outputs data from the computer to the outside world?
10)List some examples of output devices.
11)What is software?
12)How many software categories are there, and what are their names?
13)A word processing program belongs to what category of software?
14)What is a compiler?
15)What is an interpreter?
16)What is meant by the term “machine language”?
17)What is source code?
18)What is PHP?
19)What is the difference between a script and a program?
20)What does the acronym PHP now stand for?
21)What are some of the possible uses of PHP?
22)What does the acronym CLI stand for?
23)What is Visual Studio Code?
Left arrow icon Right arrow icon

Key benefits

  • Understand how computers work and the basics of programming
  • Learn to use PHP and IDEs, and master variables, constants, operators, and control structures
  • Develop skills in manipulating data structures, while learning how to create and use subprograms

Description

Begin your journey into PHP programming and algorithmic thinking with a structured, detailed course that takes you from understanding the basic components of a computer to mastering complex decision control and loop structures. Each chapter builds on the previous one, starting with an introduction to how computers work and gradually progressing to more complex topics like decision control structures, loop structures, arrays, and subprograms. You'll start with foundational concepts such as variables, constants, and operators, before diving into more advanced topics like manipulating strings, handling input and output, and developing complex mathematical expressions. The course emphasizes practical application, guiding you through the use of Visual Studio Code, integrated development environments, and essential software packages. By the end of this book, you will have a solid understanding of PHP programming and algorithmic thinking, enabling you to write efficient code, develop your own subprograms, and utilize various control structures and arrays effectively. This course is tailored for beginners, ensuring a smooth learning curve with tips, tricks, and exercises to reinforce your knowledge, and prepare you with the necessary skills needed to be a programmer.

What you will learn

Utilize PHP for various programming tasks Implement control structures, loops, and arrays in code Develop and use subprograms for modular programming Apply object-oriented principles and manage files in PHP Analyze and debug PHP code effectively Integrate PHP with databases for dynamic web development

Product Details

Country selected

Publication date : Jun 20, 2024
Length 938 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781836209379
Category :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Jun 20, 2024
Length 938 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781836209379
Category :

Table of Contents

11 Chapters
Preface Chevron down icon Chevron up icon
1. Part I Introductory Knowledge Chevron down icon Chevron up icon
2. Part II Getting Started with PHP Chevron down icon Chevron up icon
3. Part III Sequence Control Structures Chevron down icon Chevron up icon
4. Part IV Decision Control Structures Chevron down icon Chevron up icon
5. Part V Loop Control Structures Chevron down icon Chevron up icon
6. Part VI Arrays in PHP Chevron down icon Chevron up icon
7. Part VII Subprograms Chevron down icon Chevron up icon
8. Part VIII Object-Oriented Programming Chevron down icon Chevron up icon
9. Part IX Files Chevron down icon Chevron up icon
10. Some Final Words from the Author Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Top Reviews
No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.