MBED HTTP client with web pages for server

Dependencies:   DS1820

Fork of J_HTTP_Client by Jan Kamidra

Committer:
JohnnyK
Date:
Wed May 23 06:47:56 2018 +0000
Revision:
1:920482bc63f4
Parent:
0:d90e1f7bda1f
Repair

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JohnnyK 0:d90e1f7bda1f 1 You need all these files copy into a server with PHP 5.6 and MySQL support.
JohnnyK 0:d90e1f7bda1f 2 gpio.txt is not necessary to copy cuz php script will create automatically when file not found.
JohnnyK 0:d90e1f7bda1f 3 In MySQL create DTB with tables:
JohnnyK 0:d90e1f7bda1f 4 - Table 'users' with fields 'u_name', 'u_password' and some 'id'
JohnnyK 0:d90e1f7bda1f 5 - Table 'nucleo_data' with fields 'id', 'time', 'date' and 'temp'
JohnnyK 0:d90e1f7bda1f 6
JohnnyK 0:d90e1f7bda1f 7 Control.php only rewrite one row in database now but MySQL tables and SQL commands in PHP scripts can be simply change for tamperature log.
JohnnyK 0:d90e1f7bda1f 8 Login_page.php not have register and forgot password functions. Working only with users writed in MySQL table 'users'.
JohnnyK 0:d90e1f7bda1f 9
JohnnyK 0:d90e1f7bda1f 10 *I do not know why, but when i open control.php in online compiler and scroll down to CSS style, page will freze so maybe export will be better solution than open it here.
JohnnyK 0:d90e1f7bda1f 11
JohnnyK 0:d90e1f7bda1f 12 This was my first HTML, PHP and CSS work so thank to:
JohnnyK 0:d90e1f7bda1f 13 - Online Tutorials chanel from youtube (most of CSS efect was from here) https://www.youtube.com/channel/UCbwXnUipZsLfUckBPsC7Jog.
JohnnyK 0:d90e1f7bda1f 14 - www.w3schools.com most of PHP was from here