ugrás a tartalomhoz

PHP-HTML Webadmin profilpanel hiba HELP

benoke · 2010. Dec. 23. (Cs), 16.38

<?php


$nev=  $_COOKIE["nev"];

if (file_exists ("adatbazis/{$nev}.php"))
  
{
  	include'adatbazis/'.$nev.'.php'; 
?>
<html>
<form method='post'action='funcio.php'>
<font color="#ffffff">
<div style="text-align: left;"><font size="3"><span
 style="font-weight: bold;">$berloneve profilja.<br>
</span></font>
<table style="text-align: left; width: 386px;" border="1"
 cellpadding="2" cellspacing="2">
  <tbody>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">Szolg&aacute;ltat&aacute;s
&aacute;ra:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$fosszeg</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">Rcon
jelsz&oacute;:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$rcon</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">FTP
kiszolg&aacute;l&oacute;:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$ftpkisz</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">FTP
felhaszn&aacute;l&oacute;n&eacute;v:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$ftpuser</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">FTP
jelsz&oacute;:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$ftppass</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">E-Mail:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$emailcim</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">Szerver
lej&aacute;rata:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$lejarat</td>
    </tr>
    <tr>
      <td style="width: 153px; color: rgb(255, 255, 255);">Szolg&aacute;ltat&aacute;s
IP c&iacute;me:</td>
      <td style="width: 215px; color: rgb(255, 255, 255);">$ip</td>
    </tr>
  </tbody>
</table>
</div>
</font>
</form>
</html>
 
1

Mi a hiba

Poetro · 2010. Dec. 23. (Cs), 16.47
Azt elárulod, hogy mi a hiba?
2

Ja bocs lehagytam.

benoke · 2010. Dec. 23. (Cs), 17.49
hiba: Parse error: syntax error, unexpected T_STRING in /login/profil.php on line 14
3

Kimaradt a }

Poetro · 2010. Dec. 23. (Cs), 18.40
<?php
$nev = $_COOKIE["nev"];

if (file_exists("adatbazis/{$nev}.php")) {
  include 'adatbazis/' . $nev . '.php';
}
?>
<!DOCTYPE html>
<html>
<head>
  <title></title>
  <style type="text/css">
    .row-label {
      width: 153px;
      color: white;
    }
    .row-value {
      width: 215px;
      color: white;
    }
  </style>
</head>
<body>
  <form method='post' action='funcio.php'>
    <div style="text-align: left;">
      <font color="#FFFFFF"><font size="3"><span style="font-weight: bold;">$berloneve profilja.<br></span></font></font>

      <table style="text-align: left; width: 386px;" border="1" cellpadding="2" cellspacing="2">
        <tbody>
          <tr>
            <td class="row-label">Szolg&aacute;ltat&aacute;s &aacute;ra:</td>

            <td class="row-value">$fosszeg</td>
          </tr>

          <tr>
            <td class="row-label">Rcon jelsz&oacute;:</td>

            <td class="row-value">$rcon</td>
          </tr>

          <tr>
            <td class="row-label">FTP kiszolg&aacute;l&oacute;:</td>

            <td class="row-value">$ftpkisz</td>
          </tr>

          <tr>
            <td class="row-label">FTP felhaszn&aacute;l&oacute;n&eacute;v:</td>

            <td class="row-value">$ftpuser</td>
          </tr>

          <tr>
            <td class="row-label">FTP jelsz&oacute;:</td>

            <td class="row-value">$ftppass</td>
          </tr>

          <tr>
            <td class="row-label">E-Mail:</td>

            <td class="row-value">$emailcim</td>
          </tr>

          <tr>
            <td class="row-label">Szerver lej&aacute;rata:</td>

            <td class="row-value">$lejarat</td>
          </tr>

          <tr>
            <td class="row-label">Szolg&aacute;ltat&aacute;s IP c&iacute;me:</td>

            <td class="row-value">$ip</td>
          </tr>
        </tbody>
      </table>
    </div>
  </form>
</body>
</html>
4

köszi

benoke · 2010. Dec. 23. (Cs), 18.45
köszönőm a segítséget.