diff --git a/README.md b/README.md index 654a6a1..5e69401 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,11 @@

> In this project you will learn how to explore the content of the variable $_SERVER which is injected to the running script, in it we can find information about the server environment and the client. +It has been interesting to know how a form is made in php. It was somewhat complex for me to understand the "session_start" since it gave me some problems at the beginning by not getting the correct info to take me to the next page. ## Index - [Requirements](#requirements) -- [Repository](#repository) - [Technologies used](#technologies-used) - [Project delivery](#project-delivery) - [Resources](#resources) @@ -20,18 +20,12 @@ - Learn how to use the $_SERVER - Understand what a server-side language is and what it is used for - -## Repository - -First of all you must fork this project into your GitHub account. - -To create a fork on GitHub is as easy as clicking the “fork” button on the repository page. - -Fork on GitHub +- introduce Bootstrap in PHP. ## Technologies used \* PHP +\* Bootstrap ## Project delivery diff --git a/close_session.php b/close_session.php new file mode 100644 index 0000000..c55d721 --- /dev/null +++ b/close_session.php @@ -0,0 +1,10 @@ + diff --git a/index.php b/index.php new file mode 100644 index 0000000..f726848 --- /dev/null +++ b/index.php @@ -0,0 +1,54 @@ + + + + + + + + + + + + Php Form + + + +
+ +

Log in

+ + +
+
+
+ + +
+
+ + +
+

+ +

+
+ +
+
+
+ + + \ No newline at end of file diff --git a/panel.php b/panel.php new file mode 100644 index 0000000..b612878 --- /dev/null +++ b/panel.php @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + Wellcome Javier + + + + +
+

Account setting


+
+ +
+
+ + + \ No newline at end of file diff --git a/server_variables.php b/server_variables.php new file mode 100644 index 0000000..8b48464 --- /dev/null +++ b/server_variables.php @@ -0,0 +1,12 @@ +"; +print_r($_SESSION); +echo ""; + +?> \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..900e591 --- /dev/null +++ b/style.css @@ -0,0 +1,8 @@ +p { + color: red; +} + +.body { + background-color: rgb(98, 98, 98); + color:white; +} \ No newline at end of file diff --git a/validate.php b/validate.php new file mode 100644 index 0000000..d533896 --- /dev/null +++ b/validate.php @@ -0,0 +1,18 @@ + \ No newline at end of file