UCP & MySQL connecting - 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 & MySQL connecting (
/showthread.php?tid=266232)
UCP & MySQL connecting -
Arcanize - 04.07.2011
Hey!
I have a problem with my UCP & MySQL connecting.
How can I connect UCP with MySQL (code)?
Arca
Re: UCP & MySQL connecting -
Lorenc_ - 04.07.2011
Check out [HiC]TheKiller's mysql tutorial. It will show you the concept of UCP and how it is created.
Re: UCP & MySQL connecting -
Arcanize - 04.07.2011
Yeh, but how can I put the password to Whirlpool? (encrypt) or something
Re: UCP & MySQL connecting -
Cyanide - 04.07.2011
Quote:
Originally Posted by Arcanize
Yeh, but how can I put the password to Whirlpool? (encrypt) or something
|
The PHP function
hash allows to to whirlpool a string. The simple function below I quickly created can make it much easier for you if you don't understand the manual reference.
PHP код:
function whirlpool( $string )
return hash( 'whirlpool', $string );
Ex:
echo whirlpool( "Hello World" );
Try doing a simple
****** search next time.