Reset all plusses of members!

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

    Reset all plusses of members!

    Who can code this one? Thanks..
    LESS TALK. LESS MISTAKE.

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

    #2
    Originally posted by robzky View Post
    Who can code this one? Thanks..
    just do like in clear data..delete msgs, shout, etc..And replace the sql code with UPDATE ibwf_users SET plusses='0'
    My Blog: http://jhommark.blogspot.com
    My Facebook: http://www.facebook.com/jhommark
    My Official Site: http://www.undergroundweb.tk
    My Community Site: http://undergroundwap.xtreemhost.com

    Comment


      #3
      Ah! Ok thanks bro.. I can't click the THANKS link.. Haist!
      LESS TALK. LESS MISTAKE.

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

      Comment


        #4
        Hmm.. Damn! I can't code this.. Help me guyz!
        LESS TALK. LESS MISTAKE.

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

        Comment


          #5
          owner tools in change user info
          Code:
           echo "<a href=\"ownerproc.php?action=delplusses&amp;sid=$sid&amp;who=$who\">Delete Plusses Of This User</a><br/>";
          ownerproc
          Code:
          else if($action=="delplusses")
          {
            $who = $_GET["who"];
            $user = getnick_uid($who);
            echo "<head>";
            echo "<title>Owner Tools</title>";
            echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
            echo "</head>";
            echo "<body>";
            echo "<p align=\"center\">";
            $uid = getuid_sid($sid);
            $perm = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE id='".$uid."'"));
            $trgtperm = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE name='".$user."'"));
          
            if($trgtperm>$perm){ 
            echo "<b><img src=\"../images/notok.gif\" alt=\"x\"/><br/>Error!!!<br/>Permission Denied...</b><br/>";
            echo "<br/>U Cannot Delete $user plusses<br/>";
            echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
            echo "</p>";
            }else{
          
            echo "<br/>";
          $res = mysql_query("DELETE FROM ibwf_brate WHERE uid='".$who."'");
            if($res)
            {
            echo "<img src=\"../images/ok.gif\" alt=\"O\"/>Plusses  deleted successfully";
            }else{
            echo "<img src=\"../images/notok.gif\" alt=\"X\"/>Error deleting plusses";
            }
             echo "<br/><b>9 </b><a accesskey=\"9\" href=\"ownercp.php?action=ownercp&amp;sid=$sid\"><img src=\"../images/admn.gif\" alt=\"\"/>Owner Tools</a><br/>";
            echo "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
            }
            echo "</p></body>";
          }
          this should do the job
          ________________
          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


            #6
            Rider this code is only for one user! Can you code this delete plusses of all users! Thanks..
            LESS TALK. LESS MISTAKE.

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

            Comment


              #7
              Code is done!
              -TOPIC CLOSED-
              LESS TALK. LESS MISTAKE.

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

              Comment


                #8
                i think this is the correct one.

                add new field in your ibwf_users named "reset" and value=1

                else if($action=="delplusses")
                {
                $who = $_GET["who"];
                $user = getnick_uid($who);
                echo "<head>";
                echo "<title>Owner Tools</title>";
                echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
                echo "</head>";
                echo "<body>";
                echo "<p align=\"center\">";
                $uid = getuid_sid($sid);
                $perm = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE reset='".$uid."'"));
                $trgtperm = mysql_fetch_array(mysql_query("SELECT perm FROM ibwf_users WHERE name='".$user."'"));

                if($trgtperm>$perm){
                echo "<b><img src=\"../images/notok.gif\" alt=\"x\"/><br/>Error!!!<br/>Permission Denied...</b><br/>";
                echo "<br/>U Cannot Delete $user plusses<br/>";
                echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
                echo "</p>";
                }else{

                echo "<br/>";
                $res = mysql_query("SET plusses='0' FROM ibwf_users WHERE reset='1'");
                if($res)
                {
                echo "<img src=\"../images/ok.gif\" alt=\"O\"/>Plusses deleted successfully";
                }else{
                echo "<img src=\"../images/notok.gif\" alt=\"X\"/>Error deleting plusses";
                }
                echo "<br/><b>9 </b><a accesskey=\"9\" href=\"ownercp.php?action=ownercp&amp;sid=$sid\">< img src=\"../images/admn.gif\" alt=\"\"/>Owner Tools</a><br/>";
                echo "<b>0 </b><a accesskey=\"0\" href=\"index.php?action=main&amp;sid=$sid\"><img src=\"../images/home.gif\" alt=\"\"/>Home</a>";
                }
                echo "</p></body>";
                }

                Comment


                  #9
                  no! you don't need to add new field...
                  LESS TALK. LESS MISTAKE.

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

                  Comment

                  Working...
                  X