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

Размер файла: 4.25Kb
  1. <?php
  2. include "head.php";
  3. include "inc.php";
  4. include "config.php";
  5. print "<div align=\"center\"><div class=a>";
  6. print "$catalog";
  7. print "</div><br/>";
  8. print "<div align=\"left\">";
  9.  
  10. print "<div class=foot><b>Ссылки:</b></div>";
  11. print "<div class='foot'>1)Ссылка на сам каталог:<br/>";
  12. print htmlspecialchars("<a href=\"$cat_url/index.php?id=ваш номер\">$catalog</a>");
  13. print"<br/><b>Ссылка для копирования</b><input name='code'type='text'value='<a href=\"$cat_url/index.php?id=ваш номер\">$catalog</a>'/><br/>";
  14. print "<hr>2)Ссылка на категорию в которой находиться ваш сайт: <br/>";
  15. print htmlspecialchars("<a href=\"$cat_url/category.php?id=ваш номер\">Лучшие сайты</a>");
  16. print"<br/><b>Ссылка для копирования</b><input name='code'type='text'value='<a href=\"$cat_url/category.php?id=ваш номер\">Лучшие сайты</a>'/><br/>";
  17. print "<hr>3)Ссылка на ТОП20(если ваш сайт в нем то можете поставить ссылку): <br/>";
  18. print htmlspecialchars("<a href=\"$cat_url/top20.php?id=ваш номер\">Top20 каталога</a>");
  19. print"<br/><b>Ссылка для копирования</b><input name='code'type='text'value='<a href=\"$cat_url/top20.php?id=ваш номер\">Top20 каталога</a>'/><br/>";
  20. print "<hr>";
  21. print "Вам необходимо установить любые 2 из этих 3-х ссылок.<br/>";
  22.  
  23.  
  24. $auth = autorize();
  25. if ($auth){
  26. if ($do == "update")
  27. {
  28. $id=@mysql_escape_string($id);
  29. $pass=@mysql_escape_string($passw);
  30.  
  31. $pasw=htmlspecialchars(stripslashes(trim($pass)));
  32. $url=htmlspecialchars(trim($url));
  33. $sname=htmlspecialchars(stripslashes(trim($sname)));
  34. $about=htmlspecialchars(stripslashes(trim($about)));
  35. $email=htmlspecialchars(stripslashes(trim($email)));
  36. $category=htmlspecialchars(stripslashes(trim($category)));
  37.  
  38. $url=substr($url,0,35);
  39. $sname=substr($sname,0,40);
  40. $about=substr($about,0,80);
  41. $email=substr($email,0,35);
  42. $pass=substr($pass,0,15);
  43. $category=substr($category,0,2);
  44. $category = str_replace("+","",$category);
  45. if(@mysql_query("update `users` set `url`='$url', `sname`='$sname', `about`='$about', `email`='$email', `password`='$pass',`category`='$category' where `id`='".$auth['id']."';"))
  46. print "<font color=\"#FF0000\">Данные успешно обновлены!<br/></font>";
  47. print "<a href=\"profile.php?login=$login&amp;pas=$pas\">Мой профиль</a>";
  48. }
  49. else
  50. {
  51. print "<div align=\"left\">";
  52. if ($auth['activ'] == "ban")
  53. print "<font color=\"#FF0000\">Ваш сайт забанен!<br/></font>";
  54. print "<u>Ваши данные(id - ".$auth['id']."):</u><br/>";
  55. print "<form method=\"post\" action=\"profile.php?login=".$auth['admin']."&amp;pas=".$auth['password']."&amp;do=update\">";
  56. print "Пароль:<br><input name=\"pass\" type=\"text\" maxlength=\"15\" size=\"15\" value=\"".$auth['password']."\"><br>";
  57. print "Сайт:<br><input name=\"url\" type=\"text\" maxlength=\"35\" size=\"15\" value=\"".$auth['url']."\"><br>";
  58. print "Название:<br><input name=\"sname\" type=\"text\" maxlength=\"40\" size=\"15\" value=\"".$auth['sname']."\"><br>";
  59. print "Описание:<br><input name=\"about\" type=\"text\" maxlength=\"80\" size=\"15\" value=\"".$auth['about']."\"><br>";
  60. print "E-mail:<br><input name=\"email\" type=\"text\" maxlength=\"35\" size=\"15\" value=\"".$auth['email']."\"><br>";
  61. print "Категория:<br><select name=\"category\" value=\"".$auth['category']."\">";
  62. $kateg = @mysql_query("select `id`, `name` from `categories`;");
  63. while ($names = @mysql_fetch_array($kateg))
  64. {
  65. print "<option value=\"".$names['id']."\">".$names['name']."</option>";
  66. }
  67. print "</select><br>";
  68. print "<br><input value=\"Обновить\" name=\"update\" type=\"submit\"></form>";
  69. }
  70. }else{
  71. print "<font color=\"#FF0000\">Неверный логин или пароль!<br/></font>";
  72. }
  73. print "<br/><a href=\"index.php\">В Каталог</a>";
  74. include "foot.php";
  75. print "</div>";
  76. print "</body></html>";
  77. ?>