Posts: 31
Threads: 6
Joined: Nov 2014
Reputation:
0
Hello I am making an rp server and I want it to have the feature where you must register on the forums to be able to go ingame. I would really appreciated if someone did it for me or just showed me how to do it. Please add me on skype @ exclusivefx_ if you are looking to help me. Also I am interested in giving high admin rank in my server for anyone that helps.
Posts: 1,276
Threads: 6
Joined: Aug 2014
Posts: 912
Threads: 116
Joined: Jun 2012
Reputation:
0
Honestly, it depends on your preference; If you're using Pure PHP (wouldn't recommend it) or a backend framework like 'Laravel' (pretty handy, just need php experience and a little know-how from their docs)..
Posts: 3,133
Threads: 71
Joined: Dec 2013
Reputation:
0
It depends on the forum software. If using MySQL as your gamemode's account loading / saving system you can simply perform an insert query on register.php, activation.php or wherever their account is created.
Example:
<?php
.. code
mysql_query("INSERT INTO ...");
?>
Posts: 31
Threads: 6
Joined: Nov 2014
Reputation:
0
Oh ight well I never used MySql or knew how to use it. Well I havent even tried. I might try MySql since I heard that is the best way to save stats.