It is necessary that when clicking on a link, a new table is created in the database:
create table otchet ( id_user int (10) AUTO_INCREMENT, name varchar(20) NOT NULL, email varchar(50) NOT NULL, password varchar(15) NOT NULL, PRIMARY KEY (id_user) ); The problem is that when you re-create a table with the same name, sql will naturally return a warning that a table with that name exists. How to make the table name change with each request. For example: otchet (1), otchet (2) ... otchet (n);