Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for SourceGuardian & phpSHIELD)
- *
- * @ Version : 1.1.6.0
- * @ Author : DeZender
- * @ Release on : 02.06.2013
- * @ Official site : http://DeZender.Net
- *
- */
- $host = 'localhost';
- $username = '';
- $password = '';
- $db_name = 'test';
- $tbl_name = 'members';
- if (!( mysql_connect( $host, $username, $password ))) {
- exit( 'cannot connect' );
- (bool)true;
- }
- if (!( mysql_select_db( $db_name ))) {
- exit( 'cannot select DB' );
- (bool)true;
- }
- $myusername = $_POST['myusername'];
- $mypassword = $_POST['mypassword'];
- ...............................................................
- ................................
- ............
Advertisement
Add Comment
Please, Sign In to add comment