register page (help)

05/02/2015 10:18 mmno#1
Hello all

I would like to make a register page that if some one register the id and pass go through 4 different data base... I didnt find and am now using my phone after my computer motherboard die
please help here and thanx alot all


My seriously aplogise if I put it in the wrong section please move it to the right section

Hard to use phone.
05/02/2015 11:39 _robox#2
wenn meine Übersetzung richtig ist möchtest du bei der Registrierung
in 4 DB speichern.
das ist kein alle zu Großes Problem.
dazu gibt es mehrere Möglichkeiten
Variante 1
PHP Code:
INSERT INTO db_0 (..... ) VALUES (............. )';
INSERT INTO db_1 (..............) SELECT id FROM  db_0 WHERE name = xxxx;
INSERT INTO db_2 (..............) SELECT id FROM  db_0 WHERE name = xxxx;
INSERT INTO db_3 (..............) SELECT id FROM  db_0 WHERE name = xxxx; 
Variante 2
PHP Code:
SELECT Max(id) AS Max FROM  db_0 ;

INSERT INTO db_0 (..............) VALUES (Max +1, .......);
INSERT INTO db_1 (..............) VALUES (Max +1, .......);
INSERT INTO db_2 (..............) VALUES (Max +1, .......);
INSERT INTO db_3 (..............) VALUES (Max +1, .......); 
nur noch ein wenig php und dein Script ist fertig.