DELETE Mood from online list

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

    DELETE Mood from online list

    i have a coding that shows users mood image on the online list but want to have a option to delete it and dont have any have coded this below but the image not moving....


    ////////Genproc.php//////


    //////////////////////////remove online mood image//////////////////////////

    else if($action=="delonmood")
    {

    addonline(getuid_sid($sid),"Removing Online Mood","");
    echo "<card id=\"main\" title=\"Online Mood Removed\">";
    echo "<p align=\"center\">";
    echo "<br/>";






    $res = mysql_query("DELETE FROM ibwf_avatars3 WHERE id='".$item[2]."'");






    if($res)
    {
    echo "<img src=\"../images/ok.gif\" alt=\"\"/>Online Mood Removed Successfully<br/>";
    echo "<a href=\"index.php?action=online&amp;sid=$sid\">Back to Online List</a><br/><br/>";
    }else{
    echo "<img src=\"../images/notok.gif\" alt=\"\"/>Error! ";
    }

    echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"images/home.gif\" alt=\"*\"/>";
    echo "Home</a>";
    echo "</p></card>";
    }


    //////////Index.php?action=online//////


    echo "<a href=\"index.php?action=delonmood&amp;sid=$sid\">R emove Online List Mood</a><br/>";

    #2
    is this an option for users to delete?
    in which case you would need to change $item[2] to $uid and possibly not use ibwf_avatars3

    however if this is a staff tool to delete them then you need a variable in your link and collect it and changed $item[2] into that variable
    Last edited by something else; 15.11.09, 18:51.

    Comment


      #3
      i tried this and it still didnt work


      else if($action=="delonmood")
      {

      addonline(getuid_sid($sid),"Removing Online Mood","");
      echo "<card id=\"main\" title=\"Online Mood Removed\">";
      echo "<p align=\"center\">";
      echo "<br/>";






      $res = mysql_query("DELETE avatar3 FROM ibwf_users WHERE id='".$uid."'");






      if($res)
      {
      echo "<img src=\"../images/ok.gif\" alt=\"\"/>Online Mood Removed Successfully<br/>";
      echo "<a href=\"index.php?action=online&amp;sid=$sid\">Back to Online List</a><br/><br/>";
      }else{
      echo "<img src=\"../images/notok.gif\" alt=\"\"/>Error! ";
      }

      echo "<a href=\"index.php?action=main&amp;sid=$sid\"><img src=\"images/home.gif\" alt=\"*\"/>";
      echo "Home</a>";
      echo "</p></card>";
      }

      Comment


        #4
        lol this is how pabloe gets his codings??? lol ok. thought he would do his own codings.

        Comment


          #5
          ????????????? dude i dnt even want this coding....some one ask me 2 ask here for dem....and if u look goood in this whole site....if i ask for ntn that much

          Comment

          Working...
          X