Просмотр файла gta/profile.php

Размер файла: 4.64Kb
  1. <?php
  2. #####################################################
  3. # mod by -=LesNIK=- #
  4. # icq 366244181 #
  5. # Официальный сайт мода http://wenz.net.ru #
  6. # все ответы на вопросы и помощь по скрипту #
  7. # вы можете получить только там! #
  8. # #
  9. # Вы не имеете право вносить #
  10. # свои изменения в данный мод!#
  11. # #
  12. # Уважайте труд автора! #
  13. #####################################################
  14.  
  15.  
  16. include "ini3.php";
  17. include "includes/header2.php";
  18. include "includes/inc_online.php";
  19.  
  20.  
  21. $id=cyr(htmlspecialchars(stripslashes(trim($id))));
  22. $login=cyr(htmlspecialchars(stripslashes(trim($login))));
  23. $pass=cyr(htmlspecialchars(stripslashes(trim($pass))));
  24.  
  25. if(!empty($login))
  26. {
  27. $q = mysql_query("select pass,id,login,mobile,about,email,pol from users where login='".cyr($login)."';");
  28. }
  29. elseif(!empty($id))
  30. {
  31. $q = mysql_query("select pass,id,login,mobile,about,email,pol from users where id='".mysql_real_escape_string($id)."';");
  32. }
  33. else
  34. {
  35. die ($lang['empty_login']."</body>
  36. </html>");
  37. }
  38.  
  39. $data = mysql_fetch_array($q);
  40.  
  41. $id=$data['id'];
  42. $login=$data['login'];
  43. $mobile=$data['mobile'];
  44. $about=$data['about'];
  45. $mail=$data['email'];
  46. $pol=$data['pol'];
  47.  
  48. if($pass!=$data['pass'])
  49. {
  50. die ($lang['empty_login']."</body>
  51. </html>");
  52. }
  53.  
  54. mysql_query("update users set last='".time()."',city='0' where id='".mysql_real_escape_string($id)."';");
  55.  
  56.  
  57. switch ($mode)
  58. {
  59. case "save":
  60.  
  61. if($newpass!=$newpass2)
  62. {
  63. print $lang['reg_error_pass']."<br/>";
  64. echo "<a href='javascript:history.back(1)'>".$lang['back']."</a><br/></body>
  65. </html>";
  66. exit;
  67. }
  68. if (ereg("[а-яА-Я,$,>,<,',;,/,\,&,#,,,.,:,*,@,!,%,^,(,)]","$newpass$login$newpass2"))
  69. {
  70. print $lang['reg_bad_symbols']."<br/>";
  71. echo "<a href='javascript:history.back(1)'>".$lang['back']."</a><br/></body>
  72. </html>";
  73. exit;
  74. }
  75.  
  76. $newpass=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newpass)))));
  77. $newpass2=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newpass2)))));
  78. $newemail=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newemail)))));
  79. $newmobile=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newmobile)))));
  80. $newabout=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newabout)))));
  81. $newnums=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newnums)))));
  82. $newpol=cyr(htmlspecialchars(stripslashes(trim(str_replace('$','$$',$newpol)))));
  83.  
  84. mysql_query("update users set pass='".$newpass."',email='".$newemail."',mobile='".$newmobile."',about='".$newabout."',nums='".$newnums."',pol='".$newpol."' where id='".mysql_real_escape_string($id)."';");
  85. print $lang['profile_refreshed'];
  86.  
  87. $pass=$newpass;
  88.  
  89. break;
  90. default:
  91. echo "<form action=\"profile.php?id=$id&amp;pass=$pass&amp;mode=save\" method=\"post\">
  92.  
  93. <postfield name=\"newpass\" value=\"$(newpass)\"/>
  94. <postfield name=\"newpass2\" value=\"$(newpass2)\"/>
  95. <postfield name=\"newemail\" value=\"$(newemail)\"/>
  96. <postfield name=\"newmobile\" value=\"$(newmobile)\"/>
  97. <postfield name=\"newstatus\" value=\"$(newstatus)\"/>
  98. <postfield name=\"newabout\" value=\"$(newabout)\"/>
  99. <postfield name=\"newnums\" value=\"$(newnums)\"/>
  100. <postfield name=\"newpol\" value=\"$(newpol)\"/>";
  101. print $lang['profile_pass'].":<br/>";
  102.  
  103. print "<input name=\"newpass\" value=\"$pass\" maxlength=\"15\"/><br/>";
  104. print "".$lang['profile_pass2'].":<br/>";
  105. print "<input name=\"newpass2\" value=\"$pass\" maxlength=\"15\"/><br/>";
  106. print "".$lang['reg_mail'].":<br/>";
  107. print "<input name=\"newemail\" value=\"$mail\"/><br/>";
  108. print "".$lang['regmobile'].":<br/>";
  109. print "<input value=\"$mobile\" name=\"newmobile\"/><br/>";
  110.  
  111. print "".$lang['regabout'].":<br/>";
  112. print "<input value=\"$about\" name=\"newabout\"/><br/>";
  113. print "".$lang['regonline'].":<br/>";
  114. print "<select name=\"newnums\">
  115. <option value=\"5\">5</option>
  116. <option value=\"10\">10</option>
  117. </select><br/>";
  118. echo "Ваш пол:<br /><select name='newpol'>
  119. <option value='1'>Мужской</option>
  120. <option value='0'>Женский</option>
  121. </select><br/>";
  122. echo "<input class=\"ibutton\" type=\"submit\" value=\"".$lang['ok']."\"/>";
  123. echo "</form>";
  124. break;
  125. }
  126.  
  127.  
  128. print "<br/><a href=\"game.php?id=$id&amp;pass=$pass\">".$lang['menu']."</a>";
  129. print "<br/>---";
  130.  
  131. mysql_close();
  132. echo "</body>
  133. </html>";
  134. ?>