Creation of Automatic Pages

1

I'm taking the first steps and still learning HTML but I have a goal to build a site similar to OLX for example where the user signs up and can create ads about the product he wants ...

The login and password systems are in PHP, I'm already taking the first steps ... could anyone help me with the name of the required function? Is it in PHP?

Thank you for any help in guiding which steps to take ...

    
asked by anonymous 28.04.2016 / 17:42

2 answers

0

A site like this is made up of many functions, databases and etc ... You can make a copy of almost any website with the PHP language.

Basically for the login system you are doing you need to use database and cookies. In order to have the login itself, you need users registered in your database, for this you will need to have the registration form before the login form.

Some links to get you started:

Starting in PHP

Connecting to MySQL

Inserting data into the data bank

Update data in the data bank

Delete data in the data bank

Remembering that this is the basics to start. Advanced PHP starts for object orientation which should be studied later.

    
28.04.2016 / 20:21
-1

Friend, this link has a tutorial for you to create the login system and password in PHP. Link

    
28.04.2016 / 18:21