Posts: 446
Threads: 66
Joined: Mar 2008
Reputation:
0
Hello,
Has anyone got any good tutorials or ******* links for creating a UCP. I'm using MYSQL, so that will make it alot easier.
Posts: 484
Threads: 61
Joined: Oct 2009
Reputation:
0
Its called learning PHP or buying a UCP from a market or you could contact me and i could make you one.
contact info in sig.
EDIT
Not free.
Posts: 446
Threads: 66
Joined: Mar 2008
Reputation:
0
You can't read? I said has anyone got any good tutorials.. This means I am wanting to learn.
Posts: 484
Threads: 61
Joined: Oct 2009
Reputation:
0
"Its called learning PHP", AFAIK if you can't find a video on how to create a SA-MP UCP the chances are no one has created one.
Posts: 2,863
Threads: 99
Joined: Nov 2009
Reputation:
0
Give more information. What must the UCP include.
Try finding tutorials for making register/login systems. Then you can make an UCP
It's not hard to create one once you got a MySQL DB and shit like that.
[HiC]TheKiller has a MySQL tutorial which also has code on how to create a UCP for that same tutorial. Give it a try!
Posts: 649
Threads: 4
Joined: Jul 2010
use too
http://php.net/ <
"Wiki
" php.
http://dev.mysql.com/doc/refman/4.1/pt/index.html "Wiki
" MySQL.
the logic on php is equal PAWN
Exemple:
Pawn
pawn Код:
if(!fexist("cat.txt"))
{
new File: g = fopen("gato.txt", write);
fwrite(g, "I'm is cat");
fclose(g);
}
PHP
PHP код:
if(!file_exists("gato.txt"))
{
$g = fopen("gato.txt", "x+");
fwrite($g, "I'm is cat");
fclose($g);
}
simple.