You are on page 1of 44

SIWES REPORT

BY
MUSTI, BABASHEHU SHETTIMA
(18/08/05/205)

A SIWES REPORT SUBMITTED TO THE DEPARTMENT OF


MATHEMATICAL SCIENCES, UNIVERSITY OF MAIDUGURI
IN PARTIAL FULFILMENT OF THE REQUIREMENT FOR THE
AWARD OF BACHELOR OF SCIENCE (B. Sc.) DEGREE IN
COMPUTER SCIENCE

JANUARY, 2023

i
DEDICATION

This report is dedicated first and foremost to Almighty Allah who has been

there right from the beginning to this very point. Special dedication also to

my ever-supportive parents, for their relentless support and compassion

towards me during the course of my six months SIWES training.

ii
ACKNOWLEDGEMENT

With a deep sense of appreciation, respect and gratitude, I want to say a big

thank you to my parents, brothers, sisters and other relatives and non

relative friends for their caring attitude and support from the beginning of

my pursuit for B.Sc degree in Computer Science to this point.

iii
ABSTRACT

This report is a summary of the experience I was able to gather during my


SIWES program at HAIGHA INSTITUTE OF TECHNOLOGY.

The report is a summary of the expericence I was able to obtaine


during a web development program that was conducted for ITF Students
of the University Of Maiduguri UNIMAID seeking to improve their skills
in this field. The training program was designed to cover a range of topics,
including HTML, CSS, JavaScript, PHP and My Sql for the Database and
responsive design.

The program was delivered through a combination of lectures,


hands-on exercises, and projects, and was led by experienced web
developers with a wealth of knowledge and experience. The goal of the
program was to provide attendees with the skills and knowledge they need
to develop effective and user-friendly websites that meet the needs of their
clients or organizations.

iv
Table of Contents

Dedication ...................................................................................................2

Acknowledgment ........................................................................................3

Abstract .......................................................................................................4

List of Figures .............................................................................................6

List of Tables ...............................................................................................7

Chapter One: Introduction ..........................................................................8


1.0 History of the Organization.......................................................... 8
1.1 Non-Technical Experience ........................................................... 8

Chapter Two: Technical Experience ...........................................................9


2.0 Roles and Responsibilities. .......................................................... 9
2.1 Task Handled ................................................................................ 9
2.2 Professional Certification ............................................................. 9

Chapter Three: Log Book .........................................................................10


3.0 Summary of Log Book. .............................................................. 10

Chapter Four: Summary, Conclusion and Recommendation ................... 11


4.0 Summary. ................................................................................... 11
4.1 Conclusion.................................................................................. 11
4.2 Recommendation. ...................................................................... 11

References .................................................................................................12

Appendix ...................................................................................................13

v
CHAPTER ONE
INTRODUCTION

1.0 History of the Organization.

HAIGHA TECH provides one stop automated solution for your trade
and industry. Depending on the size and field of your organization, we have
different products and services to meet your requirements. We provide the
optimum and customized solutions made for your organization. HAIGHA
TECH began its business operation as a hardware and software solutions
providing company in January 2017. HAIGHA TECH is focusing
exclusively in high quality and cost-effective software development and
implementation of services. We are advancing on a tremendous pace and
with involvement of skilled and experienced people working in the
organization. HAIGHA TECH is currently doing business in Government,
NGOs, Large Corporate, and Schools.

The company has been formed by a group of professionals having


vivid experience and wide exposure in Information Technology. People
involved here are young qualified Engineering graduates and qualified
business graduate from the renowned universities across the country. The
resource personnel working in the company have been consistently
providing reliable support services and consultancy to a wide variety of
corporate houses either in the capacity of executive or as business partner
or consultant. Bottom line of the company philosophy is building a long-
term business partnership with its clients where interpersonal relationship,
reliability, assured quality and target oriented modern technology are the
major building blocks. It is a company where professionals from both
technical and functional field group together with an objective of providing
appropriate business solutions. It realizes the importance of functional

1
knowledge and its impact in developing business solutions. We constantly
strive to be a leading technology firm with profound business and
functional knowledge. The key to the company's success is the
maintenance of a close working relationship with the clients through
ensuring the best possible solutions to their needs; to establish and maintain
a thorough knowledge and understanding of client's objective and help
them maximize the benefits. We want to establish ourselves as the best
choice in Computing and Information Technology Services, Consultancy
and Development by offering the full spectrum of services.

1.4 COMPANY’S AREA OF SPECIALIZATION


With a team of seasoned computer Engineers and Programmemers with
proven track records in computer and communication business, the
company offers the following wide areas of specialization
1. Repairs, Assembling and Maintenance of computers
2. Software Development and Maintenance
3. Computer Networking and Maintenance
4. Web Development
5. Internet and E-mail Services
6. Training Service

2
CHAPTER TWO

TECHNICAL EXPERIENCE
2.0 WEB DESIGN DEPARTMENT
This department was where my Industrial Training took place
where i was grounded and expose to the website world especially the
creation of websites taking me step by step with practical all through the
process.
2.1 DEFINITION OF TERMS
The following are terms that were made use of, in this department
WEBSITE:
A website is a set of related webpages containing content such as
texts, images, videos, audios, etc. A website is hosted on at least one web
server, accessible via a network such as the internet or a private LAN
through an internet address known as a URL (Universal Resource
Locator). A publicly accessible websites collectively constitutes the
World Wide Web (WWW).
WEBPAGE:
A webpage is a document, typically written in plain text
interspersed with formatting instructions of hypertext nark up language
(HTML, XHTML). A webpage may incorporate elements from other
websites with suitable anchors. Webpages are accessed and transported
with the hypertext transfer protocol (HTTP), which may occasionally
employ encryption (HTTP secure, HTTPS) to provide security and
privacy for the use of the webpage content. The user’s application often a
web browser renders the page content according to its HTML mark-up
instructions into a display terminal.

3
HTTP:
This stands for Hyper Text Transfer Protocol which is the set of
rules for transferring files (text, graphic, images, sound, video, and other
multimedia files) on the World Wide Web.
URL:
This stands for Uniform Resource Locator and as the name
suggests, it provides a way to locate a resource on the web, the hypertext
system that operates over the internet.

2.2 HTML AND ITS PROPERTIES


HTML stands for Hypertext Mark-up Language, and it is the most
widely used language to write Web Pages.
❖ Hypertext refers to the way in which Web pages (HTML
documents) are linked together. Thus, the link available on a
webpage is called Hypertext.
❖ As its name suggests, HTML is a Markup Language which means
you use HTML to simply "mark-up" a text document with tags that
tell a Web browser how to structure it to display.
Originally, HTML was developed with the intent of defining the structure
of documents like headings, paragraphs, lists, and so forth to facilitate the
sharing of scientific information between researchers.
Now, HTML is being widely used to format web pages with the help of
different tags available in HTML language.

2.2.1 HTML TAGS:


As told earlier, HTML is a markup language and makes use of
various tags to format the content. These tags are enclosed within angle
braces <Tag Name>. Except few tags, most of the tags have their
corresponding closing tags. For example, <html>has its closing
tag</html>and <body>tag has its closing tag </body>tag etc.

4
The following are the names of tags and their description.

Tag Description
<html> This tag encloses the complete HTML document
and mainly comprises of document header which is
represented by <head>...</head> and document
body which is represented by <body>...</body>
tags.

<head> This tag represents the document's header which can


keep other HTML tags like <title>, <link>, <script
language =”javascript”> etc.

<title> The <title> tag is used inside the <head> tag to


mention the document title.

<body> This tag represents the document's body which


keeps other HTML tags like <h1>, <div>, <p>,
<table> etc.

<h1> This tag represents a heading

<p> This tag represents a paragraph.

<b>, <i>, <li>, <ul> Bold, italic, list, unordered list

2.2.2 HTML TABLE:


The HTML table model allows web designers to arrange data –text,
preformatted text, images, links, forms, form fields, other tables, etc. into
rows and columns of cells. It is defined with the <table> tag.

5
Table are divided into table rows with the <tr> tag. Table rows are
divided into table data with the <td> tag. A table row can also be divided
into table headings with the <th> tag.
Table data <td> are the data containers of the table. They can contain all
sorts of HTML elements like text, images, lists, other tables.
CODE VIEW

DESIGN VIEW

2.3 CSS AND ITS PROPERTIES


CSS stands for Cascading Style Sheet used for formatting html
document. It is a style sheet language used for describing the presentation
of a document written in a mark-up language.

6
Note: CSS code is not written the same way as HTML code is.
This makes sense because css is not HTML, but rather a way of
manipulating existing HTML.
2.3.2 METHOD USED BY CSS IN FORMATTING HTML
DOCUMENT
1. Inline Style: It is used to apply a unique style to a single HTML
element. An inline CSS uses the style attribute of an HTML
element.
CODE VIEW DESIGN VIEW

2. Embedded / Internal Style: It is used if one single page has a


unique style. Internal styles are defined within the <style> element,
inside the <head> section of an HTML page.
CODE VIEW DESIGN VIEW

3. External Style: With an external style sheet, you can change the
look of an entire website by changing just one file. Each page must
include a reference to the external style sheet file inside the <link>

7
element. The <link> element goes inside the <head> section. Also
when using external css it is preferable to keep the css separate
from your HTML. Placing CSS in a separate file allows the web
designer to completely differentiate between content (HTML) and
design (CSS). External CSS is a file that contains only CSS code
and is saved with a “.css” file extension. This CSS is then
referenced in your HTML using the <link> instead of <style> as
earlier stated.

EXTERNAL CSS FILE HTML CODE DESIGN VIEW

2.3.3 CSS SELECTORS AND HOW THEY CAN BE USED


CSS selectors are used to find or select HTML elements based on
their element name, id or class
1. Element Selector: The element selector selects elements based on
the element name.
2. Id Selector: The id selector uses the id attribute of an HTML
element to select a specific element. The id of an element should be
unique within a page, so the id selector is used to select one unique
element. e.g. id=”hello” css #hello { color;red;}
3. Class Selector: The class selector selects elements with specific
class attribute. To select elements with a specific class, write a

8
period (.) character followed by the name of the class. e.g. .center
{text-align:center;}

2.3.4 CSS RULES OVERRIDING


1. Any inline style sheet takes the highest priority, so it will override
any rule defined in <style>……</style> tags.

2. Any rule defined in <style>………</style> tags will


override the rules defined in any external style sheet file.
2.4 WEBSITE DESIGN USING HTML AND CSS
HTML CODING VIEW

9
CSS CODING VIEW

DESIGN VIEW

10
HOME PAGE

PHOTO MENU

2.5 JAVASCRIPT AND ITS PROPERTIES

JavaScript is a dynamic computer programming language. It is


lightweight and most commonly used as a part of web pages, whose
implementations allows client side script to interact with the user and make
dynamic pages. It is an interpreted programming language with object

11
oriented capabilities. It was developed by Brenan Eich 1995-1996; it is an
implementation of ECMA Script (European Computer Manufacturers
Association). It was also known as livescript later change to javascript. It
is use for client side web form validation. Javascript cannot run with been
embedded in the HTML.

2.5.1 FUNCTIONS OF JAVASCRIPT


1. It is most commonly used as a client side scripting language, which
implies that javascript is written into an HTML page and when a user
request an HTML page with javascript in it, the script is sent to the
browser.
2. It used for form validation.

2.5.2 BROWSER DETECTION


This refers to a feature of a web browser to execute a javascript code
without any error irrespective of its version.

2.5.3 ADVANTAGES OF JAVASCRIPT


1. Less server interaction: You can validate user input before sending
the page off to the server. This saves server traffic, which means
fewer loads on your server.
2. Immediate feedback to the visitors: They don’t have to wait for a
page to reload to see if they forgotten to enter something.
3. Increased interactivity: You can create interfaces that react when
the user hovers over them with a mouse or activates them via the
keyboard.
4. Richer interfaces: You can use javascript to include such items as
drag and drop component and sliders to give a rich interface to your
site visitors.

12
2.5.4 JAVASCRIPT DEVELOPMENT TOOLS
One of the major strengths of javascript is that it does not require
expensive development tools. One can begin with a simple text editor such
as notepad or notepad++. Since it is an interpreted language inside the
context of a web browser, you don’t even need to buy a compiler.
However to make life simpler, various vendors have come up with
very nice javascript editing tools, they are macromedia Dreamweaver.

2.5.5 JAVASCRIPT SYNTAX


JavaScript can be implemented using javascript statements that are
placed within the <script>…………..</script> HTML tags in a web page.
You can place the <script> tags, containing your javascript, anywhere
within your web page, but it is normally recommended that we should keep
it within the <head> tags
The script tag takes two important attributes:
1. Language: This attribute specifies what scripting language i am
using.
2. Type: This attribute is what is now recommended to indicate the
scripting language in use and its value should be set to
“text/javascript”.

13
2.5.7 MY JAVASCRIPT PROGRAM TO OUTPUT MY NAME
CODE VIEW DESIGN VIEW

2.5.8 HOW TO ENABLE JAVASCRIPT IN BROWSER


I was taught that all the modern browsers come with built-in support
for JavaScript. Frequently, we may need to enable or disable this support
manually. The following procedure will help us to enable and disable
JavaScript in our browsers.

2.5.8.1 JAVASCRIPT IN INTERNET EXPLORER


Here are the steps to turn on JavaScript in Internet Explorer:
• Follow Tools-> Internet Options from the menu.
• Select Security tab from the dialog box.
• Click the Custom Level button.
• Scroll down till you find the Scripting option.
• Select Enable radio button under Active Scripting.
• Finally, click Ok.

2.5.8.2 JAVASCRIPT IN MOZILLA FIREFOX


Here are the steps to turn on JavaScript in Firefox:
• Open a new tab -> type about: config in the address bar.
• Then you will find the warning dialog. Select I’ll be careful,
I promise.

14
• Then you will find the list of configure options in the
browser.
• In the search bar, type javascript.enabled.
• There you will find the option to enable javascript by right
clicking on the value of that option -> select toggle.

Note: If javascript.disabled; it gets enabled upon clicking toggle.


2.5.8.3 JAVASCRIPT IN GOOGLE CHROME
Here are the steps to turn on JavaScript in Chrome:
• Click the Chrome menu at the top right hand corner of your
browser.
• Select Settings.
• Click Show advanced settings at the end of the page.
• Under the Privacy section, click the Content settings button.
• In the “JavaScript” section “Allow any site to run to
JavaScript.

2.5.9 DATA TYPES IN JAVASCRIPT


One of the most fundamental characteristics of a programming
language is the set of data types it support. These are the type of values that
can be represented and manipulated in a programming language. They
include:
• Numbers: This represents numeric values e.g. 100.
• Strings: This represents sequence of character e.g. Hello.
• Boolean: This represents Boolean value either true or false
• Null: This represents nothing i.e. it can be empty.
• Undefined: This represents undefined values.
• Object: This represent values return by functions.

15
2.5.10 JAVASCRIPT VARIABLES
This is a memory location used for holding values or used for storing
values in a memory. var (keyword) is used to hold a value or declare a
value, it makes it known to a compiler, interpreter.
E.g. var name ----- Declaration
Name = “John” ----- Initialization
2.5.10.1 VARIABLE NAMES
While naming the variables in JavaScript, the following rules
should be kept in mind.
• You should not use any of the JavaScript reserved keywords
as a variable name. For example, break or boolean
• JavaScript variable names should not start with a numeral (0-
9). They must begin with a letter or an underscore character.
For example, 876ejiro is an invalid name but _876ejiro, ejiro
is a valid one.
• JavaScript variable names are case-sensitive. For example,
Ejiro and ejiro are two different variables.
CODE VIEW DESIGN VIEW

16
2.5.11 OPERATORS
Let me take a simple expression to give its meaning 4 + 5 = 9. Here
4 and 5 are called operands and “+” is called the operator. JavaScript
support the following types of operators they are:

1. Arithmetic Operators: JavaScript supports the following


arithmetic operators using an expression. Assume variable A holds
10 and variable B holds 20, then
a. Addition (+) e.g. A + B = 30
b. Subtraction (-) e.g. A – B = -10
c. Multiplication (*) e.g. A * B = 200
d. Division (/) e.g. B/A = 2
e. Modulus (%) e.g. B%A = 0
f. Increment (++) e.g. A++ = 11
g. Decrement (--) e.g. A-- = 9
2. Comparison Operators: JavaScript support the following
comparison operators. Assume variable A holds 10 and variable B
holds 20, then;
a. Equal (==): Checks if the value of two operands are equal
or not, if yes, then the condition becomes true. e.g. (A == B)
is not true.
b. Not Equal (!=): Checks if the value of two operands are
equal or not, if the values are not equal, then the condition
becomes true. e.g. (A != B) is true.
c. Greater Than (>): Checks if the value of the left operand is
greater than the value of the right operand, if yes, then the
condition becomes true. e.g. (A > B) is not true.

17
d. Less Than (<): Checks if the value of the left operand is less
than the value of the right operand, if yes, then the condition
becomes true. e.g. (A < B) is true.
e. Greater Than or Equal To (>=): Checks if the value of the
left operand is greater than or equal to the value of the right
operand, if yes, then the condition becomes true. e.g. (A >=
B) is not true.
f. Less Than or Equal To (<=): Checks if the value of the left
operand is less than or equal to the value of the right
operand, if yes, then the condition becomes true. e.g. (A <=
B) is true.
3. Logical (or Relational) Operators: JavaScript supports the
following logical operators. Assume variable A holds 10 and
variable holds 20, then;
a. Logical AND (&&): If both the operands are non-zero, then
the condition becomes true. e.g. (A && B) is true.
b. Logical OR (||): If any of the two operands are non-zero,
then the condition becomes true. e.g. (A || B) is true.
c. Logical NOT (!): Reverses the logical state of its operand. If
a condition is true, the logical NOT operator will make it
false. e.g. !(A && B) is false.
4. Assignment Operators
5. Conditional Operators

2.5.12SELECTION STATEMENTS
When writing a program, there may be a situation when we need to
adopt one out of a given set of paths. In such cases, conditional statement
were used which allows our program to make correct decisions and

18
perform right actions. The following selection statements are supported
by JavaScript are:

1. IF STATEMENT: This is the fundamental control statement that


allows JavaScript to make decisions and execute statements
conditionally.
CODE VIEW DESIGN VIEW

2. IF-ELSE STATEMENT: This is the next form of the selection


statement that allows JavaScript to execute statements in a more
controlled way.
CODE VIEW DESIGN VIEW

19
3. IF-ELSE-IF STATEMENT: This is an advanced form of if else
that allows JavaScript to make a correct decision out of several
conditions.
CODE VIEW DESIGN VIEW

4. SWITCH CASE: Switch case is used to handle situation more


efficiently than repeated if-else-if statements.
CODE VIEW DESIGN VIEW

2.5.13LOOP STATEMENT
While writing a program, you may encounter a situation where you
need to perform an action over and over again. In such situations, you
would need to write loop statements to reduce the number of lines.
JavaScript supports all the necessary loops to ease down the pressure of
programming.
1. WHILE LOOP: The purpose of a while loop is to execute a
statement or code block repeatedly as long as an expression is true.
Once the expression becomes false, the loop terminates.

20
CODE VIEW DESIGN VIEW

2. DO WHILE LOOP: This is similar to the while loop except that


the condition checks what happens at the end of the loop. This
means that the loop will always be executed at least once, even if
the condition if false.
CODE VIEW DESIGN VIEW

3. FOR LOOP: This is the most compact form of looping. It includes


the following three (3) important parts:
• Loop Initialization where we initialize our counter to a
starting value. The initialization statement is executed before
the loop begins.
• Test statement which will test if a given condition is true or
not. If the condition is true, then the code given inside the
loop will be executed, otherwise the control will come out of
the loop.

21
• Iteration statement where you can increase or decrease
your counter.
Note: All this three (3) parts are inserted in a single line
separated by semicolons.

CODE VIEW DESIGN VIEW

2.5.14FUNCTIONS
A function is a group of reusable code which can be called
anywhere in your program. This eliminates the need of writing the same
code again and again. It helps programmers in writing modular codes. It
allows a programmer to divide a big program into a number of small and
manageable functions.
Before we use a function, we need to define it. The most common
way to define a function in JavaScript is by using the function keyword,
followed by a unique function name, a list of parameters (this might be
empty), and a statement block surrounded by curly braces.
Also to invoke a function somewhere later in the script, you would
simply need to write the name of that function.

22
2.6 JAVASCRIPT WORK USING HTML, CSS AND
JAVASCRIPT
Code View
CSS AREA

23
JAVASCRIPT AREA

24
HTML AREA

25
DESIGN VIEW

2.7 PHP AND ITS PROPERTIES


PHP was originally called PHP/FI which means Personal Home
Page/Form Interpreter in 1995 by Ramus Leardof. It was a collection of
Perl Script for handling form submission but lack many useful language
features such as for loop.
PHP/F2 was written in 1997 by Ramus yet with some lacking
feature and poor execution style. e.g. the while loop.
PHP 3 which means PHP Hypertext Pre-processor was later
written by Ramus, Zeave Audraski and Andi Gutman in 1998 with
improvement and added feature like database access.
PHP 4 was written with the sluggard “Compare First and execute
Later” Style in late 1998. The compile code will be use to execute the
object code using the Zend Engine.
PHP 5 contain improve object oriented feature.

26
2.7.1 COMMON USES OF PHP
PHP performs system functions i.e. from files on a system it can
create, open, read, write, and close them. The other uses of PHP are:
• PHP can handle forms, i.e. gather data from files, save data
to a file, through email.
• You add, delete, and modify elements within your database
through PHP.
• Access cookies variables and set cookies.
• Using PHP, you can restrict users to access some pages of
your website.
• It can encrypt data.

2.7.2 PHP EMBEDDED IN HTML


Once you have PHP in your HTML do not save it with .html
CODE VIEW DESIGN VIEW

2.7.3 ENVIRONMENTAL SETUP


In order to develop and run my PHP web pages, three (3) vital
components were installed on my computer system.
• Web Server: PHP will work with virtually all web server
software, including Microsoft Internet Information Server
(IIS) and wamp server.

27
• Database: PHP will work with virtually all database
software, including MySQL, Oracle.
• PHP Parser: In order to process PHP script instructions, a
parser must be installed to generate HTML output that can
be sent to the Web Browser.

2.7.5 VARIABLE TYPES


The main way to store information in the middle of a PHP program is by
using a variable. The important thing to know about variable in PHP
includes:
• All variable in PHP are denoted with a leading dollar sign ($).
• The value of a variable is the value of its most recent assignment.
• Variables are assigned with the = operator, with the variable on
the left hand side and the expression to be evaluated on the right.
• Variables can, but do not need, to be declared before assignment.
• Variables in PHP do not have intrinsic types – a variable does not
know in advance whether it will be used to store a number or a
string of characters.
• Variables used before they are assigned have default values.
• PHP does a good job of automatically converting types from one
to another when necessary.

2.7.6 DATA TYPES


PHP has a total of eight (8) data types which we use to construct our
variables.
• Integers: They are whole numbers, without a decimal point e.g.
4196
• Doubles: They are floating-point numbers e.g. 3.14159 or 49.1

28
• Booleans: They have only two possible values either true or
false.
• NULL: Is a special type that only has one value: NULL.
• Strings: They are sequences of characters, like ‘PHP supports
strings operations’.
• Arrays: They are named and indexed collections of other
values.
• Objects: They are instances of programmer-defined classes,
which can package up both other kinds of values and functions
that are specific to the class.
• Resources: They are instances variables that hold references to
resources external to PHP (such as database connections).

2.7.7 VARIABLE NAMING


Rules for naming a variable are:
• Variable names must begin with a letter or underscore character.
• A variable name can consist of numbers, letters, underscores but
you cannot use character like +, -, %, (,), &, etc.

Note: There is no size limit for variables.

2.7.8 VARAIABLES
Scope can be defined as the range of availability a variable has to program
in which it is declared. PHP variables can be one of four scope types.
• Local Variables: A variable declared in a function is considered
local, i.e. it can be referenced solely in that function. Note that any
assignment outside of that function will be considered to be entirely
different variable from the one contained in the function.

29
• Global Variables: In contrast to local variables, a global variable
can be accessed in any part of the program. However, in order to be
modified, a global variable must be explicitly declared to be global
in the function in which it is to be modified. This is accomplished,
conveniently enough, by placing the keyword GLOBAL in front of
the variable that should be recognized as global.

2.7.9 ARRAYS
An array is a data structure that stores one or more similar type of values
in a single value. For example, if you want to store 100 numbers, then
instead of defining 100 variables, it is easy to define an array of 100
lengths. An array consists of two (2) basic elements.
7. Key
8. Value

The general form of an array e.g. state1, 2, 3, 4 are called the names while
the likes of Kaduna, Abuja are called values. $state1 = Kaduna etc.
CODE VIEW DESIGN VIEW

2.7.10 GET AND POST METHODS


There are two ways the browser client can send information to the web
server.

30
• The GET Method: It sends the encoded user information appended
to the page request. The page and the encoded information are
separated by the ? character.
• The POST Method: This method transfers information via HTTP
headers.

Note: Before the browser sends the information, it encodes it using a


scheme called URL encoding. In this scheme, name/value pairs are joined
with equal signs and different pairs are separated by the ampersand. e.g.
name1=value1&name2=value&name3=value3. Spaces are removed and
replaced with the + character and any other non-alphanumeric characters
are replaced with a hexadecimal values. After the information is encoded,
it is sent to the browser.

2.8 OTHER PHP CODES AND THEIR DESIGN


CODE VIEW DESIGN VIEW

2.9 DATABASE AND ITS PROPETIES


Structured Query Language (SQL) is used to manipulate database
object.
Database is a tabular representation of data with specific attribute.

31
2.9.1 DATABASE STRUCTURE
DATABASE

Table 1 Table 2 Table 3 Table 4

Row 1 Row 2 Row 3

Column1 Column 2 Column 3


All the rows in a given table are related in a way that
describes the database function. A row of data in a table is a called
a record.
Data in a table can be linked with another record in a table
which is done by a
primary key.
A primary key uniquely identify record in the entire
database. The primary key cannot be duplicated in a table. Unique
id behaves in the same way it is use to prevent duplicate in a table.
Note: For me to work (insert) and update record into a database
will be done through an interface called PHPMYADMIN.
2.9.2 HOW DO YOU INSERT RECORDS
They are inserted from HTML forms or from a scripting
language

32
2.9.3 PHPMYADMIN

PhpMyAdmin is a web based interface to a MYSQL server. This


interface is written in PHP language. Which is frequently used for web
based interactive programs. PhpMyAdmin translates what i enter into the
web browser, sends queries to the MySQL database, and translates the
returned information back to web format.

2.9.4 DATABASE CREATION


A database was created for my project, so that the form created can be
submitted

33
2.9.5 SQL STATEMENTS
1. INSERT: It is use to add record to database tables
2. UPDATE: It is use to change existing records data in tables
3. SELECT: It query or view record data in tables.

2.10 MY FULL WEBSITE WITH HTML, CSS, JAVASCRIPT, PHP


AND SENT TO DATABASE
Due to how lengthy the code is the design view will be displayed
only.
DESIGN VIEW
HOMEPAGE

34
REGISTRATION PAGE

LOGIN PAGE

35
CHAPTER THREE

Log Book
TECHNICAL SKILLS ACQUIRED
Below are list of skills i acquired during my Industrial Training
at ADMAS IT PLACE
• Deep knowledge in understanding web design and database
maintenance.
• Ability to create websites with the help of HTML.
• Ability to create websites with the help of HTML and CSS.
• Ability to create a standardize websites with the help of HTML,
CSS, JAVASCRIPT, and PHP.
• Debugging errors and been creative in arrangement of codes.
• Installing Database (Wamp) and linking PHP to the Database.
• Installing several developmental tools like Adobe CS6 which
contain Dreamweaver, and Fireworks, knowing how to use them
effectively.
• Learning how to work with designed Templates and creating
Templates.
• Ability to Insert, Update, Select, Delete records in the Database and
Importing, Exporting database file from one local server to another.

3.1 SOCIAL AND FUNCTIONAL SKILLS ACQUIRED


• Enhanced communication skills.
• Ability to identify and solve problems relating to web design .
• Decision making, critical thinking, organizing and planning.
• Ability to work with team.
• Enhanced teaching and effective learning skills

36
CHAPTER FOUR
CONCLUSION AND RECOMMENDATIONS

4.0 CONCLUSION
My six (6) months Industrial Training at HAIGHA TECH was a
huge success and a great time of acquisition of knowledge and skills.
Through my training i was able to appreciate my chosen course of study
even more, because i had the opportunity to blend the theoretical
knowledge acquired from school with the practical hands-on application of
knowledge gained here to perform very important tasks that contributed in
a way to my productivity in the company. My training here has given me a
broader view to the importance and relevance of Computer Science (Web
Design Development) in the immediate society and the world as a whole,
as i now look forward to impacting it positively after graduation. I have
also been able to improve my communication and presentation skills and
thereby developed good relationship with my fellow colleagues at work. I
have also been able to appreciate the connection between my course of
study and other disciplines in producing a successful result.

4.1 RECOMMENDATIONS:
• School should provide a place of attachment for student.
• Allowances should be paid to students during their programme just
like NYSC and not after. This would help them a great deal to handle
some financial problems during their training course.
• Supervisor should always visit student monthly in their various
places of attachment.

37
REFERENCE
PAPER
➢ Student industrial work experienced scheme 2021/2022 handbook
➢ Web design manual by industrial supervisor Mr. Kelvin P.
➢ Web design and Advance Manual by Industrial based supervisor
Mr. Adeyemi Segun

LINK
➢ http://www.w3schools.com
➢ http://www.tutorialpoint.com
➢ http://www.tizag.com/CSS
➢ http://www.CSS/HTML/116583/article.coms

38

You might also like