UCP/PHP/MYSQL Tutorials - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: UCP/PHP/MYSQL Tutorials (
/showthread.php?tid=252771)
UCP/PHP/MYSQL Tutorials -
acade - 02.05.2011
Hello,
Has anyone got any good tutorials or ******* links for creating a UCP. I'm using MYSQL, so that will make it alot easier.
Re: UCP/PHP/MYSQL Tutorials -
[WF]Demon - 02.05.2011
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.
Re: UCP/PHP/MYSQL Tutorials -
acade - 02.05.2011
You can't read? I said has anyone got any good tutorials.. This means I am wanting to learn.
Re: UCP/PHP/MYSQL Tutorials -
[WF]Demon - 02.05.2011
"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.
Re: UCP/PHP/MYSQL Tutorials -
Kwarde - 02.05.2011
Give more information. What must the UCP include.
Try finding tutorials for making register/login systems. Then you can make an UCP
Re: UCP/PHP/MYSQL Tutorials -
iggy1 - 02.05.2011
PHP and SQL:
http://www.w3schools.com/default.asp
EDIT fail i didn't read properly.
Re: UCP/PHP/MYSQL Tutorials - [L3th4l] - 02.05.2011
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!
Re: UCP/PHP/MYSQL Tutorials -
TheGarfield - 02.05.2011
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.