Bank

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Bank

    Who can help create a sql for this one
    kindatbank.php
    Code:
    <?php
    include("config.php");
    include("core.php");
    
    
    header("Content-type: text/html; charset=ISO-8859-1");
    echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>";
    echo "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\"\"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
    echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">";
    
    	echo "<head>";
    
    	echo "<title>pinoykindat.net</title>";
    	echo "<link rel=\"StyleSheet\" type=\"text/css\" href=\"style/style.css\" />";
    	echo "</head>";
    
    	echo "<body>";
    
    $bcon = connectdb();
    if (!$bcon)
    {
    
        echo "<p align=\"center\">";
        echo "Site is busy<br/><br/>";
        echo "Our database is busy. Please try again later!<br/>";
        echo "</p>";
        echo "</body>";
         echo "</html>";
        exit();
    }
    $action = $_GET["action"];
    $sid = $_GET["sid"];
    $page = $_GET["page"];
    $uid = getuid_sid($sid);
    if($action != "")
    {
        if(islogged($sid)==false)
        {
    
          echo "<p align=\"left\">";
       
          echo "Your session has been expired<br/>";
    echo "<a href=\"index.php\">Login</a>";
      echo "</go></anchor>";
      echo "</p>";
          echo "</body>";
           echo "</html>";
          exit();
      
        }
    }
    if(isbanned($uid))
        {
    
          echo "<p align=\"center\">";
         echo "<img src=\"images/exit2.gif\" alt=\"*\"/><br/>";
          echo "You are <b>Banned</b><br/>";
          $banto = mysql_fetch_array(mysql_query("SELECT timeto FROM ibwf_penalties WHERE uid='".$uid."' AND penalty='1'"));
          $remain = $banto[0]- time();
          $rmsg = gettimemsg($remain);
          echo "Time to finish your penalty: $rmsg<br/><br/>";
          //echo "<a href=\"index.php\">Login</a>";
          echo "</p>";
          echo "</body>";
           echo "</html>";
          exit();
        }
    
    if($action=="main")
    {
       $who = $_GET["who"];
        $uid = getuid_sid($sid);
     $unick = getnick_uid($who);
      addonline(getuid_sid($sid),"Kindat BANK","");
    
        echo "<p align=\"center\">";
     echo "Welcome to Kindat Bank, here you can maximize your earnings with your plusses and even double";
     echo "</p><p align=\"left\">";
    if(!bank($uid))
        {
    echo "<a href=\"kindatbank.php?action=reg&amp;sid=$sid\">Register</a>";
    }else{
    echo "<a href=\"kindatbank.php?action=login&amp;sid=$sid\">Login</a><br/>-----<br/>";
    echo "<a href=\"kindatbank.php?action=reset&amp;sid=$sid\">Forgot Password</a><br/>";
    }
    echo "</p><p align=\"center\">"; 
    echo "<a href=\"index.php?action=main&amp;sid=$sid\">";
    echo "Main menu</a>";
      echo "</p>";
        echo "</body>";
    }
    
    /////////////////////////////////requists
    
    else if($action=="login")
    {
        addonline(getuid_sid($sid),"Logging Bank Account","ran.php?action=$action");
    
        echo "<p align=\"center\">";
     
    echo "<form action=\"kindatbank2.php\" method=\"get\">";
      echo "<input name=\"pass\" format=\"*x\"  maxlength=\"30\"/><br/>";
      echo "<input type=\"hidden\" name=\"sid\" value=\"$sid\"/>";
      echo "<input type=\"hidden\" name=\"uid\" value=\"$uid\"/>";
    echo "<input type=\"submit\" value=\"Login &#187;\"/>";
    echo "</form>";
        echo "</p>";
     ////// UNTILL HERE >>
        echo "<p align=\"center\">";
       
        echo "<a href=\"index.php?action=main&amp;sid=$sid\">";
    echo "Main menu</a>";
      echo "</p>";
        echo "</body>";
    
    }
    /////////////////////////////////requists
    
    else if($action=="reset")
    {
        addonline(getuid_sid($sid),"Forgot password","ran.php?action=$action");
    
        echo "<p align=\"left\">";
      
    echo "<form action=\"kindatbank.php?action=reset2&amp;sid=$sid\" method=\"post\">";
     echo "Security Question: What was your first teacher's name?<br/>";   
    echo "Security answer: <input name=\"secure\" maxlength=\"300\"/>";
     echo "<input type=\"submit\" value=\"SUBMIT\"/>";
               echo "</form>";
     echo "</p>";
      ////// UNTILL HERE >>
        echo "<p align=\"center\">";
       
        echo "<a href=\"index.php?action=main&amp;sid=$sid\">";
    echo "Main menu</a>";
      echo "</p>";
        echo "</body>";
    }
    //////////////////////////////////////////shout
    else if($action=="reset2")
    {
     addonline(getuid_sid($sid),"Getting new password","index.php?action=main");
    
        echo "<p align=\"center\">";
       $secure = $_POST["secure"];
        $tid = getuid_hint($secure);
      
     if($tid==0)
        {
          echo "Security answer doesn't match!<br/>";
        }else{
    $uid = getuid_sid($sid);
           echo "We already sent your bank account password.Check your inbox!<br/>";
    $pass = mysql_fetch_array(mysql_query("SELECT pass FROM ibwf_bank WHERE uid='".$uid."'"));
        $uid = getuid_sid($sid);
       $msg = "".getnick_uid(getuid_sid($sid))." your $msg password is $pass[0]!"."[br/][small]Note: Dont share your password to anyone![/small]";
    			autopm($msg, $uid);
        }
      echo "<br/><br/><a href=\"index.php?action=main&amp;sid=$sid\">";
    echo "Main menu</a>";
        echo "</p>";
        echo "</body>";
    }
    /////////////////////////////////requists
    
    else if($action=="reg")
    {
        addonline(getuid_sid($sid),"Creating Bank Account","ran.php?action=$action");
    
        echo "<p align=\"center\">";
      echo "<form action=\"kindatbank.php?action=reg2&amp;sid=$sid\" method=\"post\">";
    echo "PASSWORD: <input name=\"rpass\" maxlength=\"60\"/><br/>";
     echo "Security Question: What was your first teacher's name?<br/>";     
    echo "Security answer: <input name=\"secure\" maxlength=\"300\"/><br/>";
     echo "<input type=\"submit\" value=\"SUBMIT\"/>";
               echo "</form>";
      echo "</p>";
      ////// UNTILL HERE >>
        echo "<p align=\"center\">";
       
        echo "<a href=\"index.php?action=main&amp;sid=$sid\">";
    echo "Main menu</a>";
      echo "</p>";
        echo "</body>";
    }
    else if($action=="reg2")
    {
            $rpass = trim($_POST["rpass"]);
            $secure = trim($_POST["secure"]);
             addonline(getuid_sid($sid),"Creating Bank Account","index.php?action=main");
    
            echo "<p align=\"center\">";
             //$uid = getuid_sid($sid);
          if(($rpass=="")||($secure==""))
            {
           echo "Don't them blank!<b/>";
           }else{
            $res = mysql_query("INSERT INTO ibwf_bank SET uid='".$uid."' , pass='".$rpass."', hint='".$secure."', done='1',actime='".time()."'");
            if($res)
            {
              echo "Bank Account Created succesfully!<br/><br/>";
            }else{
                echo "Database Error!<br/><br/>";
            }
          }
              echo "<a href=\"kindatbank.php?action=main&amp;sid=$sid\">Bank main</a><br/>";
            echo "<a href=\"index.php?action=main&amp;sid=$sid\">Main menu</a>";
            echo "</p>";
            echo "</body>";
            
    }
    
    ?>
    
    </wml>
    im having trouble when register
    here are the core file
    Code:
    /////////////////////// GET ibwf_users user id from nickname
    
    function getuid_hint($secure)
    {
      $uid = mysql_fetch_array(mysql_query("SELECT uid FROM ibwf_bank WHERE hint='".$secure."'"));
      return $uid[0];
    }
    
    ///////////////////////////////////////////is shielded?
    
    function bank($uid)
    {
      $not = mysql_fetch_array(mysql_query("SELECT done FROM ibwf_bank WHERE uid='".$uid."'"));
      if($not[0]=='1')
      {
        return true;
      }else{
        return false;
      }
    }
    ________________
    Jacques
    jacques@gw-designs.co.za
    http://coding.biz.tm
    Come join and lets make it a place to learn all the noobies how to code
    __________________

    NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

    #2
    riderz try this 1...make 4u

    CREATE TABLE `ibwf_bank` (
    `id` int(10) NOT NULL auto_increment,
    `uid` int(100) NOT NULL default '0',
    `pass` varchar(100) NOT NULL default '',
    `hint` varchar(100) NOT NULL default '',
    `done` int(100) NOT NULL default '0',
    `actime` int(100) NOT NULL default '0',
    PRIMARY KEY (`id`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

    --
    -- Dumping data for table `ibwf_bank`

    Comment


      #3
      CREATE TABLE `ibwf_bank` (
      `id` int(10) NOT NULL auto_increment,
      `uid` int(100) NOT NULL default '0',
      `pass` varchar(100) NOT NULL default '',
      `hint` varchar(100) NOT NULL default '',
      `done` int(100) NOT NULL default '0',
      `actime` int(100) NOT NULL default '0',
      `plusses` int(100) NOT NULL,
      `plusses2` int(100) NOT NULL,
      PRIMARY KEY (`id`)
      ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

      CREATE TABLE `ibwf_banktime` (
      `actime` int(100) NOT NULL,
      `uid` int(100) NOT NULL
      ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

      --
      -- Dumping data for table `ibwf_banktime`
      --


      this is the one that ive create...
      this is working.. try this mate..
      Last edited by robzky; 22.08.09, 07:33.
      LESS TALK. LESS MISTAKE.

      HTTP://APPSROB.COM - LIST OF MY FACEBOOK APPS!

      Comment


        #4
        tanx its working
        ________________
        Jacques
        jacques@gw-designs.co.za
        http://coding.biz.tm
        Come join and lets make it a place to learn all the noobies how to code
        __________________

        NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

        Comment


          #5
          Originally posted by riderz View Post
          tanx its working
          -Your Welcome Mate..
          LESS TALK. LESS MISTAKE.

          HTTP://APPSROB.COM - LIST OF MY FACEBOOK APPS!

          Comment

          Working...
          X