Np problem solved, 
hice esto:  
 Código PHP:
    <?
 
include("config.php");
 
$usr = "Tebb";
$msgtagg = mysql_query("select mensajestag from usuarios where nick='$usr'") ;
$datos = mysql_fetch_array($msgtagg) ; 
 
echo"$datos[mensajestag]";
echo"<br>";
 
$suma = $datos[mensajestag] + "10";
 
echo "$suma";
 
mysql_query("update usuarios set mensajestag='$suma' where nick='$usr'");
 
mysql_close($conectar) ;
 
?>    
  era que necesitava una array para cojer los datos =D