02.09.2016, 13:32
The best way (speed and difficulty) to do this is by using either MySQL or SQLite.
You can create 2 tables, one of them contains the "main" name and its "PG?" name, and the other one contains data for the "PG" name you select.
Table 1:
Which one is better depends on how you want to do stuff.
For example, if 3 names are necessary, then one table is better. If they're not, it's better to have another table than to have some fields that will not be used.
You can create 2 tables, one of them contains the "main" name and its "PG?" name, and the other one contains data for the "PG" name you select.
Table 1:
Table 2:
Username Name Alex_Palermitano Aaron_Smith Alex_Palermitano Jake_Jeffords Alex_Palermitano Walter_Black
Or you can have them all in one table.
Name Level Walter_Black 5
Which one is better depends on how you want to do stuff.
For example, if 3 names are necessary, then one table is better. If they're not, it's better to have another table than to have some fields that will not be used.

