![]() |
|
Website script collection - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Website Scripting & Security (https://lckb.dev/forum/forumdisplay.php?fid=197) +---- Forum: Website Releases (https://lckb.dev/forum/forumdisplay.php?fid=135) +----- Forum: Ep1 Websites (https://lckb.dev/forum/forumdisplay.php?fid=185) +----- Thread: Website script collection (/showthread.php?tid=1069) |
- Sentence - 09-07-2012 Hey guys, because I can't edit my old thread (2) I decided to make a new ^^ Actually I have 4 scripts for you: Online Users, Advertising system, Register and Ranking Player online script : 2 Player advertising script : 2 (not sure if this really correctly works only tested a few times^^) Register : 2 Ranking : 2 Write your wishes in this thread or send me a private message, I will make you an safe script without any costs! have fun - Darquise - 09-07-2012 ranking script is very buggy - Sentence - 09-07-2012 ranking script is very buggy example please^^ - Mr.Speedy - 09-09-2012 Donatesystem with paymentwall, paysafecard - Kotetsu - 09-09-2012 Hey guys, because I can't edit my old thread (2) I decided to make a new ^^ Actually I have 4 scripts for you: Online Users, Advertising system, Register and Ranking Player online script : 2 Player advertising script : 2 (not sure if this really correctly works only tested a few times^^) Register : 2 Ranking : 2 Write your wishes in this thread or send me a private message, I will make you an safe script without any costs! have fun Do u have a script for PaymentWall pls ? (I have tried ur script advertise but it don't work .)- xNiceEinzx - 09-10-2012 Do it yourself its realy Simple. You must only definite a single User Data like User Code or Login Name. Create a Variable {userid} end definite this Variable for to User Code or Login name. a lil Example from Max´s Old Homepage. if( $User->LoggedIn == true ) { // fetch account info $mysql = mysql_select_db( $SiteSQL["config-database_auth"] , $Site_sqlcon) or die( mysql_error() ); $account_info = mysql_query("SELECT user_code, user_id FROM bg_user WHERE user_code = ". $User->ID .""); $account = mysql_fetch_array( $account_info ); mysql_close($mysql); // Cash $mysql = mysql_select_db( $SiteSQL["config-database_auth"] , $Site_sqlcon) or die( mysql_error() ); $cash1 = mysql_query("SELECT cash FROM bg_user WHERE user_code = ". $User->ID .""); while( $cash2 = mysql_fetch_array( $cash1 ) ) { $tpl->assignGlobal("User_Cash" , htmlspecialchars( $cash2['cash'] ) ); } mysql_close($mysql); |