Ir para conteúdo

Featured Replies

  • Respostas 11
  • Visualizações 4k
  • Created
  • Última resposta

Top Posters In This Topic

Postado
  • Autor

Galera o ERRO ta no CreateAccount eu troquei oque tava no site por outro e deu de criar conta normal.

 

CreateAccount - Velho :

  1. <b>
  2. <?php
  3. $location = array(
  4. 'GER' =>'Europe',
  5. // 'USA' =>'North America'
  6. );
  7. $default = 'all';
  8.  
  9. $worlds = array();
  10. $worlds[0] = array('GER', 'open');
  11. /*
  12. $worlds[1] = array('GER', 'optional');
  13. $worlds[2] = array('GER', 'hardcore');
  14. $worlds[3] = array('USA', 'open');
  15. $worlds[4] = array('USA', 'optional');
  16. $worlds[5] = array('USA', 'hardcore');
  17. */
  18.  
  19. $voc = array(); // if empty, Rook Sample will be used
  20. $voc[1] = 'Sorcerer';
  21. $voc[2] = 'Druid';
  22. $voc[3] = 'Paladin';
  23. $voc[4] = 'Knight';
  24.  
  25. $suggestname = NULL; // not available
  26. $version = '860'; // for download link
  27.  
  28. foreach($worlds as $k =>$v) // remove invalid worlds
  29. if(!isset($location[$v[0]]) || !isset($config['site']['worlds'][$k]))
  30. unset($worlds[$k]);
  31.  
  32. $tmp = array();
  33. foreach($location as $k =>$v) // remove invalid/unused locations
  34. foreach($worlds as $i =>$j)
  35. if($j[0] == $k) {
  36. $tmp[$k] = $v;
  37. break;
  38. }
  39. $location = $tmp; unset($tmp);
  40.  
  41. if(isset($_POST['step']) && $_POST['step'] == 'docreate') {
  42. $e = array();
  43. $s = isset($_POST['accountname']) ? $_POST['accountname'] : '';
  44. if($s == '')
  45. $e['acc'] = 'Please enter an account name!';
  46. elseif(strlen($s) < 6)
  47. $e['acc'] = 'This account name is too short!';
  48. elseif(strlen($s) > 30)
  49. $e['acc'] = 'This account name is too long!';
  50. else {
  51. $s = strtoupper($s);
  52.  
  53. if(!ctype_alnum($s))
  54. $e['acc'] = 'This account name has an invalid format. Your account name may only consist of numbers 0-9 and letters A-Z!';
  55. elseif(!preg_match('/[A-Z]/', $s))
  56. $e['acc'] = 'Your account name must include at least one letter A-Z!';
  57. else {
  58. $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
  59. mysql_select_db($config['server']['sqlDatabase']);
  60.  
  61. if(mysql_num_rows(mysql_query('SELECT id FROM accounts WHERE name=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
  62. $e['acc'] = 'This account name is already used. Please select another one!';
  63. }
  64. }
  65.  
  66. $s = isset($_POST['name']) ? trim($_POST['name']) : '';
  67.  
  68. if(empty($s))
  69. $e['name'] = 'Please enter a name for your character!';
  70. elseif(strlen($s) < 2 || strlen($s) > 29)
  71. $e['name'] = 'A name must have at least 2 but no more than 29 letters!';
  72. elseif(preg_match('/[^a-zA-Z ]/', $s))
  73. $e['name'] = 'This name contains invalid letters. Please use only A-Z, a-z and space!';
  74. elseif(!ctype_upper($s[0]))
  75. $e['name'] = 'The first letter of a name has to be a capital letter!';
  76. elseif(strpos($s, '  ') !== false)
  77. $e['name'] = 'This name contains more than one space between words. Please use only one space between words!';
  78. else {
  79. foreach(explode(' ', $s) as $k =>$v) {
  80. $words[$k] = str_split($v);
  81. $len = strlen($v);
  82. if($len == 1) {
  83. $e['name'] = 'This name contains a word with only one letter. Please use more than one letter for each word!';
  84. break;
  85. }
  86. elseif($len > 14) {
  87. $e['name'] = 'This name contains a word that is too long. Please use no more than 14 letters for each word!';
  88. break;
  89. }
  90. }
  91. if(!isset($e['name'])) {
  92. $total=0;
  93. foreach($words as $k =>$p) {
  94. if(isset($e['name']))
  95. break;
  96. $total++;
  97. if($total > 3) {
  98. $e['name'] = 'This name contains more than 3 words. Please choose another name!';
  99. break;
  100. }
  101. $len=0;
  102. foreach($p as $i =>$j) {
  103. $len++;
  104. if($i != 0 && ctype_upper($j)) {
  105. $e['name'] = 'In names capital letters are only allowed at the beginning of a word!';
  106. break;
  107. }
  108. elseif($i == $len-1) {
  109. $ff=null;
  110. for($h=0;$h<strlen($v); $h++) {
  111. if(in_array(strtolower($v[$h]), array('a','e','i','o','u')) !== false) {
  112. $ff=true;
  113. break;
  114. }
  115. }
  116. if(!$ff) {
  117. $e['name'] = 'This name contains a word without vowels. Please choose another name!';
  118. break;
  119. }
  120. }
  121. }
  122. }
  123. if(!isset($e['name'])) {
  124. $s = strtolower($s);
  125. for($i = 0; $i < strlen($s); $i++)
  126. if($s[$i] == $s[($i+1)] && $s[$i] == $s[($i+2)]) {
  127. $e['name'] = 'This character name is already used. Please select another one!';
  128. break;
  129. }
  130. if(!isset($e['name'])) {
  131. foreach(array('aa ', 'ee', 'ii', 'oo', 'uu', 'gm','cm', 'aff ', 'god ', 'abc', 'tutor', 'game', 'admin', 'the ') as $v)
  132. if($v == substr($s, 0, strlen($v))) {
  133. $e['name'] = 'This character name is already used. Please select another one!';
  134. break;
  135. }
  136. if(!isset($e['name'])) {
  137. foreach(array('game', 'customer', 'support', 'fuck', 'haha', 'sux', ' abc', 'suck', 'noob', 'tutor', 'admin', 'account', 'gay', 'password', 'manager') as $v)
  138. if(strpos($s, $v) !== false) {
  139. $e['name'] = 'This character name is already used. Please select another one!';
  140. break;
  141. }
  142. if(!isset($e['name'])) {
  143. if(!isset($con)) {
  144. $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
  145. mysql_select_db($config['server']['sqlDatabase']);
  146. }
  147. if(mysql_num_rows(mysql_query('SELECT id FROM players WHERE name=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
  148. $e['name'] = 'This character name is already used. Please select another one!';
  149. }
  150. }
  151. }
  152. }
  153. }
  154. }
  155.  
  156. if(!isset($_POST['world']) || empty($_POST['world']))
  157. $e['world'] = 'Please select a game world for your character!';
  158.  
  159. if(!isset($_POST['sex']) || ($_POST['sex'] != 'male' && $_POST['sex'] != 'female'))
  160. $e['sex'] = 'Please select the sex for your character!';
  161.  
  162. if(count($voc) != 0 && (!isset($_POST['vocation']) || !is_numeric($_POST['vocation']) || !isset($voc[$_POST['vocation']])))
  163. $e['vocation'] = 'Please select the vocation for your character!';
  164.  
  165. $s = isset($_POST['email']) ? $_POST['email'] : '';
  166.  
  167. if($s == '')
  168. $e['email'] = 'Please enter your email address!';
  169. elseif(strlen($s) > 49)
  170. $e['email'] = 'Your email address is too long!';
  171. elseif(!filter_var($s, FILTER_VALIDATE_EMAIL))
  172. $e['email'] = 'This email address has an invalid format. Please enter a correct email address!';
  173. else {
  174. if(!isset($con)) {
  175. $con = mysql_pconnect($config['server']['sqlHost'], $config['server']['sqlUser'], $config['server']['sqlPass']) or die('MySQL connection error.');
  176. mysql_select_db($config['server']['sqlDatabase']);
  177. }
  178. if(mysql_num_rows(mysql_query('SELECT id FROM accounts WHERE email=\''.mysql_escape_string($s).'\' LIMIT 1')) != 0)
  179. $e['email'] = 'This email address is already used. Please enter another email address!';
  180. }
  181.  
  182. $s1 = isset($_POST['password1']) ? $_POST['password1'] : '';
  183. $s2 = isset($_POST['password2']) ? $_POST['password2'] : '';
  184.  
  185. if(empty($s2))
  186. $e['pass'] = 'Please enter the password again!';
  187. elseif($s1 != $s2)
  188. $e['pass'] = 'The two passwords do not match!';
  189. else {
  190. $err = array();
  191. if(strlen($s1) < 8 || strlen($s1) > 29)
  192. $err[] = 'The password must have at least 8 and less than 30 letters!';
  193. if(!ctype_alnum($s1))
  194. $err[] = 'The password contains invalid letters!';
  195. if(!preg_match('/[a-zA-Z]/', $s1))
  196. $err[] = 'The password must contain at least one letter A-Z or a-z!';
  197. elseif(!preg_match('/[0-9]/', $s1))
  198. $err[] = 'The password must contain at least one letter other than A-Z or a-z!';
  199.  
  200. if(count($err) != 0) {
  201. $e['pass'] = '';
  202. for($i=0; $i < count($err); $i++)
  203. $e['pass'] .= ($i == 0 ? '' : '<br/>').$err[$i];
  204. }
  205. }
  206.  
  207. if(!isset($_POST['agreeagreement']) || empty($_POST['agreeagreement']))
  208. $e['agreement'] = 'You have to agree to the Tibia Service Agreement in order to create an account!';
  209. if(!isset($_POST['agreerules']) || empty($_POST['agreerules']))
  210. $e['rules'] = 'You have to agree to the Tibia Rules in order to create an account!';
  211. if(!isset($_POST['agreeprivacy']) || empty($_POST['agreeprivacy']))
  212. $e['privacy'] = 'You have to agree to the Tibia Privacy Policy in order to create an account!';
  213.  
  214. if(count($e) == 0) {
  215. $worldid = NULL;
  216. foreach($config['site']['worlds'] as $id =>$name)
  217. if($worlds[$id] && $name == $_POST['world']) {
  218. $worldid = $id;
  219. break;
  220. }
  221. if($worldid === FALSE)
  222. $e['world'] = 'Please select a valid game world.';
  223. }
  224.  
  225. if(count($e) != 0) {
  226. $main_content = '<div class="SmallBox"><div class="MessageContainer"><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="ErrorMessage"><div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif)"/></div><b>The Following Errors Have Occurred:</b><br/>';
  227. foreach($e as $error) $main_content .= $error.'<br/>';
  228. $main_content .= '</div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div></div></div><br/>';
  229. }
  230. else {
  231. $random = rand(1, 9999999);
  232. $n = $random;
  233. $cur = array();
  234.  
  235. $q = mysql_query('SELECT id FROM accounts');
  236. while ($r = mysql_fetch_array($q, MYSQL_NUM))
  237. $cur[] = $r[0];
  238.  
  239. while(true)
  240. {
  241. if(!in_array($n, $cur))
  242. break;
  243.  
  244. $n++;
  245.  
  246. if($n > 9999999)
  247. $n = 1;
  248.  
  249. if($n == $random)
  250. die('Failed to create account.');
  251. }
  252.  
  253. if(mysql_query("INSERT INTO accounts (id,name,password,email,created) VALUES($n,'".$_POST['accountname']."','".($config['server']['encryptionType'] == 'plain' ? $_POST['password1'] : hash($config['server']['encryptionType'], $_POST['password1']))."','".$_POST['email']."',".time().")") === true) {
  254. $sample = (count($voc) == 0 ? 'Rook' : $voc[$_POST['vocation']]).' Sample';
  255. $q = mysql_query("SELECT id,vocation,town_id,experience,level,maglevel,health,healthmax,mana,manamax,soul,lookbody,lookfeet,lookhead,looklegs,lookaddons,cap,save,posx,posy,posz FROM players WHERE name='$sample' LIMIT 1");
  256. if(mysql_num_rows($q) != 1)
  257. die('Missing sample character ('.$sample.')');
  258.  
  259. $q = mysql_fetch_array($q);
  260. mysql_query('INSERT INTO players (name,world_id,account_id,level,vocation,health,healthmax,experience,lookbody,lookfeet,lookhead,looklegs,looktype,lookaddons,maglevel,mana,manamax,soul,town_id,posx,posy,posz,cap,sex,created) VALUES(\''.$_POST['name'].'\','.$worldid.','.$n.','.$q['level'].','.$q['vocation'].','.$q['health'].','.$q['healthmax'].','.$q['experience'].','.$q['lookbody'].','.$q['lookfeet'].','.$q['lookhead'].','.$q['looklegs'].','.($_POST['sex'] == 'female' ? 136 : 128).','.$q['lookaddons'].','.$q['maglevel'].','.$q['mana'].','.$q['manamax'].','.$q['soul'].','.$q['town_id'].','.$q['posx'].','.$q['posy'].','.$q['posz'].','.$q['cap'].','.($_POST['sex'] == 'female' ? 0 : 1).','.time().')');
  261. }
  262. else die('Failed to create account.');
  263. $main_content = '<div class="SmallBox"><div class="MessageContainer"><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="Message"><div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></div><table><tr><td class="LabelV">Note:</td><td style="width:100%"><p>Your account and character have been created successfully.</p></td></tr></table></div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"/></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></div></div></div><div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif)"></div><div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></div><div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"></div><br/><div class="TableContainer"><table class="Table4" cellpadding="0" cellspacing="0"><div class="CaptionContainer"><div class="CaptionInnerContainer"><span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></span><div class="Text">Download Client</div><span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif)"/></span><span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif)"></span><span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span><span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif)"/></span></div></div><tr><td><div class="InnerTableContainer"><table style="width:100%"><tr><td><table width="100%" cellpadding=0 cellspacing=0><tr><td style="vertical-align:top"><div class="TableShadowContainerRightTop"><div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif)"></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif)"><div class="TableContentContainer"><table class="TableContent" width="100%"><tr><td><table style="width:100%;text-align:center"><tr><td><a href="
  264. <p>Account name: <b>'.$reg_name.'</b></p>
  265. <p>Password: <b>'.trim($reg_password).'</b></p>
  266. <br />
  267. <p>After login you can:</p>
  268. <li>Create new characters
  269. <li>Change your current password
  270. <li>Change your current e-mail
  271. </body>
  272. </html>';
  273. require("phpmailer/class.phpmailer.php");
  274. $mail = new PHPMailer();
  275. if ($config['site']['smtp_enabled'] == "yes")
  276. {
  277. $mail->IsSMTP();
  278. $mail->Host = $config['site']['smtp_host'];
  279. $mail->Port = (int)$config['site']['smtp_port'];
  280. $mail->SMTPAuth = ($config['site']['smtp_auth'] ? true : false);
  281. $mail->Username = $config['site']['smtp_user'];
  282. $mail->Password = $config['site']['smtp_pass'];
  283. }
  284. else
  285. $mail->IsMail();
  286. $mail->IsHTML(true);
  287. $mail->From = $config['site']['mail_address'];
  288. $mail->AddAddress($reg_email);
  289. $mail->Subject = $config['server']['serverName']." - Registration";
  290. $mail->Body = $mailBody;
  291. if($mail->Send())
  292. {
  293. $main_content .= 'Conta Criada ! Vejo Voce no Tibia !<BR><BR>';
  294. $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
  295. <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Conta Criada !</B></TD></TR>
  296. <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
  297.  <TABLE BORDER=0 CELLPADDING=1><TR><TD>
  298.    <BR>Your account name is <b>'.$reg_name.'</b>.
  299. <BR><b><i>You will receive e-mail (<b>'.$reg_email.'</b>) with your password.</b></i><br>';
  300. $main_content .= '<a href="http://www.dynamic-world.com.br/?subtopic=accountmanagement''>http://www.dynamic-world.com.br/?subtopic=accountmanagement'>http://www.dynamic-world.com.br/?subtopic=accountmanagement" width="120"><b><font size=3">Logue Aqui</font></b></a>.<BR><BR>';
  301. $main_content .= '<br /><small>These informations were send on email address <b>'.$reg_email.'</b>. Please check your inbox/spam folder.';
  302. }
  303. else
  304. {
  305. $main_content .= '<br /><small>An error occorred while sending email! Account not created. Try again.</small>';
  306. $reg_account->delete();
  307. }
  308. }
  309. else
  310. {
  311. $main_content .= 'Your account has been created. Now you can login and create your first character. See you in Tibia!<BR><BR>';
  312. $main_content .= '<TABLE WIDTH=100% BORDER=0 CELLSPACING=1 CELLPADDING=4>
  313. <TR><TD BGCOLOR="'.$config['site']['vdarkborder'].'" CLASS=white><B>Account Created</B></TD></TR>
  314. <TR><TD BGCOLOR="'.$config['site']['darkborder'].'">
  315.  <TABLE BORDER=0 CELLPADDING=1><TR><TD>
  316.    <BR>Your account name is <b>'.$reg_name.'</b><br>You will need the account name and your password to play on '.$config['server']['serverName'].'.
  317.    Please keep your account name and password in a safe place and
  318.    never give your account name or password to anybody.<BR><BR>';
  319. if($config['site']['send_emails'] && $config['site']['send_register_email'])
  320. {
  321. $mailBody = '<html>
  322. <body>
  323. <h3>Your account name and password!</h3>
  324. <p>You or someone else registred on server <a href="'.$config['server']['url'].'"><b>'.$config['server']['serverName'].'</b></a> with this e-mail.</p>
  325. <p>Account name: <b>'.$reg_name.'</b></p>
  326. <p>Password: <b>'.trim($reg_password).'</b></p>
  327. <br />
  328. <p>After login you can:</p>
  329. <li>Create new characters
  330. <li>Change your current password
  331. <li>Change your current e-mail
  332. </body>
  333. </html>';
  334. require("phpmailer/class.phpmailer.php");
  335. $mail = new PHPMailer();
  336. if ($config['site']['smtp_enabled'] == "yes")
  337. {
  338. $mail->IsSMTP();
  339. $mail->Host = $config['site']['smtp_host'];
  340. $mail->Port = (int)$config['site']['smtp_port'];
  341. $mail->SMTPAuth = ($config['site']['smtp_auth'] ? true : false);
  342. $mail->Username = $config['site']['smtp_user'];
  343. $mail->Password = $config['site']['smtp_pass'];
  344. }
  345. else
  346. $mail->IsMail();
  347. $mail->IsHTML(true);
  348. $mail->From = $config['site']['mail_address'];
  349. $mail->AddAddress($reg_email);
  350. $mail->Subject = $config['server']['serverName']." - Registration";
  351. $mail->Body = $mailBody;
  352. if($mail->Send())
  353. $main_content .= '<br /><small>These informations were send on email address <b>'.$reg_email.'</b>.';
  354. else
  355. $main_content .= '<br /><small>An error occorred while sending email (<b>'.$reg_email.'</b>)!</small>';
  356. }
  357. }
  358. $main_content .= '</TD></TR></TABLE></TD></TR></TABLE><BR><BR>';
  359. }
  360. else
  361. {
  362. //SHOW ERRORs if data from form is wrong
  363. $main_content .= '<div class="SmallBox" >  <div class="MessageContainer" >    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="ErrorMessage" >      <div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif);" /></div><b>The Following Errors Have Occurred:</b><br/>';
  364. foreach($reg_form_errors as $show_msg)
  365. {
  366. $main_content .= '<li>'.$show_msg;
  367. }
  368. $main_content .= '</div>    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>  </div></div><br/>
  369. <BR>
  370. <CENTER>
  371. <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><FORM ACTION=?subtopic=createaccount METHOD=post><TR><TD>
  372. <INPUT TYPE=hidden NAME=email VALUE="">
  373.  
  374. <INPUT TYPE=image NAME="Back" ALT="Back" SRC="'.$layout_name.'/images/buttons/sbutton_back.gif" BORDER=0 WIDTH=120 HEIGHT=18>
  375. </TD></TR></FORM></TABLE>
  376. </CENTER>';
  377. }
  378. }
  379. ?>

 

ALGUÉM PODE ME AJUDA COM O VELHO ???

Editado por tiroleivi (veja o histórico de edições)

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

Quem Está Navegando 0

  • Nenhum usuário registrado visualizando esta página.

Conteúdo Similar

Estatísticas dos Fóruns

  • Tópicos 96.9k
  • Posts 519.6k

Informação Importante

Confirmação de Termo