MMORPG Brasil
Ola, visitante! Agradecemos sua visita, para ter acesso a todo nosso conteúdo recomendamos que faça um cadastro no fórum, com ele você pode participar de tópicos e ter acesso a todas áreas da comunidade!

Participe do fórum, é rápido e fácil

MMORPG Brasil
Ola, visitante! Agradecemos sua visita, para ter acesso a todo nosso conteúdo recomendamos que faça um cadastro no fórum, com ele você pode participar de tópicos e ter acesso a todas áreas da comunidade!
MMORPG Brasil
Gostaria de reagir a esta mensagem? Crie uma conta em poucos cliques ou inicie sessão para continuar.

Ajuda com HTML

4 participantes

Ir para baixo

Ajuda com HTML Empty Ajuda com HTML

Mensagem por EIGames Sáb 16 Abr 2011, 18:15

Veja o fundo cinza na imagem:
Spoiler:

Gostaria de saber qual código abaixo refere-se ao fundo cinza pra deixar ele transparente.
Código:

<?php
    /* PHP Eclipse Game Centre
      Scripted by Stephan J.R. van Schaik (Godlord).
      You're free to use this. */
   
    $configuration = 'configuration.php';
    $warning = '';
     
    /* Load the configuration */
    if (file_exists($configuration)) { // Does the file exist?
       if (filesize($configuration) > 0) { // Is there something in the file?
           define('configuration', true);
            include($configuration);
         
         $configlist = array('title', 'ipaddress', 'hostname', 'prefix', 'suffix');
         for ($i = 0; $i < count($configlist); $i++) {
            $_CONFIG[$configlist[$i]] = trim($_CONFIG[$configlist[$i]]);
         }
         
            if (isset($_CONFIG['title']) && $_CONFIG['title'] != '') {
                $title = $_CONFIG['title']; // Set the title from the configuration.
            } else {
               $title = 'PHP Eclipse Game Centre';
            }
           
            if ((isset($_CONFIG['hostname']) && $_CONFIG['hostname'] != '') || (isset($_CONFIG['ipaddress']) && $_CONFIG['ipaddress'] != '')) {
                if (isset($_CONFIG['hostname']) && $_CONFIG['hostname'] != '') {
                    $address = @gethostbyname($_CONFIG['hostname']); // Solve the hostname.
                    if ($address == $_CONFIG['hostname']) {
                       $warning = 'The configuration is incomplete.';
                    }
                } else if (isset($_CONFIG['ipaddress']) && $_CONFIG['ipaddress'] != '') {
                   $address = $_CONFIG['ipaddress']; // Set the IP address from the configuration.
                }
            } else {
               $warning = 'The configuration is incomplete.';
            }
           
           if (isset($_CONFIG['port']) && is_numeric($_CONFIG['port'])) {
              $port = $_CONFIG['port']; // Set the port from the configuration.
          } else {
               $warning = 'The configuration is incomplete.';
            }
          
          if (isset($_CONFIG['timeout']) && is_numeric($_CONFIG['timeout'])) {
             $timeout = $_CONFIG['timeout']; // Set the timeout from the configuration.
            } else {
               $timeout = 25;
            }
            set_time_limit($timeout + 5);
           
            if (isset($_CONFIG['prefix']) && $_CONFIG['prefix'] != '') {
                $prefix = $_CONFIG['prefix']; // Set the prefix from the configuration.
            } else {
               $prefix = '';
            }

            if (isset($_CONFIG['suffix']) && $_CONFIG['suffix'] != '') {
                $suffix = $_CONFIG['suffix']; // Set the suffix from the configuration.
            } else {
               $suffix = '';
            }
           
            if (isset($_CONFIG['major']) && is_numeric($_CONFIG['major'])) {
              $major = $_CONFIG['major']; // Set the major from the configuration.
          } else {
               $major = 1;
            }
           
            if (isset($_CONFIG['minor']) && is_numeric($_CONFIG['minor'])) {
              $minor = $_CONFIG['minor']; // Set the minor from the configuration.
          } else {
               $minor = 0;
            }
        } else {
           $warning = 'There is no configuration.';
        }
    } else {
       $warning = 'There is no configuration.';
    }
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title><?php echo $title; ?> - Register</title>
        <link rel="stylesheet" href="stylesheet.css" type="text/css" />
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    </head>
   
    <body>
        <?php
            if ($warning != "") {
               echo '<div class="notification">';
                echo $warning;
                echo '</div>';
                echo '</body>';
                echo '</html>';
                exit();
            }
           
            if (!extension_loaded('sockets')) {
               echo '<div class="notification">';
               echo 'The extension "sockets" isn\'t enabled or can\'t be loaded.';
                echo '</div>';
                echo '</body>';
                echo '</html>';
                exit();
            }

            if (isset($_POST['submit'])) { // Check if they clicked on the submit button.
                $notificated = false;
                if (!$notificated && (!isset($_POST['username']) || $_POST['username'] == "")) {
                   echo '<div class="notification">';
                    echo 'Every text box must be filled in!';
                    echo '</div>';
                    $notificated = true;
                }
               
                if (!$notificated && (!isset($_POST['password']) || $_POST['password'] == "")) {
                   echo '<div class="notification">';
                    echo 'Every text box must be filled in!';
                    echo '</div>';
                    $notificated = true;
                }
               
                if (!$notificated && (!isset($_POST['password_check']) || $_POST['password_check'] == "")) {
                   echo '<div class="notification">';
                    echo 'Every text box must be filled in!';
                    echo '</div>';
                    $notificated = true;
                }
               
                if (!$notificated && (!isset($_POST['email']) || $_POST['email'] == "")) {
                   echo '<div class="notification">';
                    echo 'Every text box must be filled in!';
                    echo '</div>';
                    $notificated = true;
                }
               
                if (!$notificated && (!isset($_POST['email_check']) || $_POST['email_check'] == "")) {
                   echo '<div class="notification">';
                    echo 'Every text box must be filled in!';
                    echo '</div>';
                    $notificated = true;
                }

                $username      = $_POST['username'];
                $password      = $_POST['password'];
                $password_check = $_POST['password_check'];
                $email          = $_POST['email'];
                $email_check    = $_POST['email_check'];

                if (!$notificated && $password != $password_check) {
                   echo '<div class="notification">';
                    echo 'The passwords aren\'t equal.';
                    echo '</div>';
                    $notificated = true;
                }
               
                if (!$notificated && $email != $email_check) {
                   echo '<div class="notification">';
                    echo 'The e-mail addresses aren\'t equal.';
                    echo '</div>';
                    $notificated = true;
                }

                $SEP_CHAR = chr(0); // Set the seperation character.
                $END_CHAR = chr(237); // Set the end character.
               
                $socket = false;
                       
                if (!$notificated) {
                    $socket = @socket_create(AF_INET, SOCK_STREAM, SOL_TCP); // Create a new TCP socket.
                    if (!$socket) {
                       @socket_close($socket);
                       echo '<div class="notification">';
                       echo 'The socket couldn\'t be created.<br />';
                        $error = @socket_last_error($socket);
                        echo 'Socket Error '.$error.': '.@socket_strerror($err);
                        echo '</div>';
                        $notificated = true;
                    }
                }
               
                $result = true;
               
                if (!$notificated) {
                   if (!@socket_set_nonblock($socket) && !$notificated) { // Try to set the socket to non-blocking mode.
                       @socket_close($socket);
                        echo '<div class="notification">';
                        echo 'The socket couldn\'t be set to non-blocking mode.';
                        $error = @socket_last_error($socket);
                        echo 'Socket Error '.$error.': '.@socket_strerror($err);
                        echo '</div>';
                        $notificated = true;
                    }
                }

                $time = time(); // Get the current time.
               
                if (!$notificated) {
                   $exit = false;

               while (!@socket_connect($socket, $address, $port) && !$exit) { // Attempt to connect.
                  $error = @socket_last_error($socket);
                    if ($error == 115 || $error == 114 || $error == 10035 || $error == 111) {
                        if ((time() - $time) >= $timeout) { // Timeout?
                        @socket_close($socket);
                            $result = false;
                        $exit = true;
                        }
                        sleep(1);
                        continue;
                  } else if ($error == 10056) {
                     $result = true;
                     $exit = true;
                    } else {
                     echo '<div class="notification">';
                           echo 'The socket couldn\'t connect.<br />';
                            echo 'Socket error '.$error.': '.@socket_strerror($error);
                            echo '</div>';
                            echo '</body>';
                            echo '</html>';
                            exit();
                    }
               }
           
                    if ($result) { // We're connected.
                        if (!@socket_set_block($socket)) { // Try to set the socket to blocking mode.
                           @socket_close($socket);
                            echo '<div class="notification">';
                            echo 'The socket couldn\'t be set to blocking mode.<br />';
                            $error = @socket_last_error($socket);
                            echo 'Socket error '.$error.': '.@socket_strerror($err);
                            echo '</div>';
                            $notificated = true;
                        }
                       
                        if ($prefix == "EE" && $major == 2 && $minor == 7) {
                            $input = 'newaccount'.$SEP_CHAR.$username.$SEP_CHAR.$password.$SEP_CHAR.$email.$SEP_CHAR.$END_CHAR;
                        } else if ($prefix == "EE") {
                           $input = 'newaccountied'.$SEP_CHAR.$username.$SEP_CHAR.$password.$SEP_CHAR.$email.$SEP_CHAR.$END_CHAR;
                        } else if (!$notificated) {
                           @socket_close($socket);
                           echo '<div class="notification">';
                            echo 'Your Eclipse version is not supported.';
                            echo '</div>';
                            $notificated = true;
                        }
                  
                        if (!$notificated) {
                            $result = socket_write($socket, $input, strlen($input)); // Send the data to the server.
                            if (!$result) {
                               @socket_close($socket);
                                echo '<div class="notification">';
                                echo 'The socket couldn\'t send data.<br />';
                                $error = @socket_last_error($socket);
                                echo 'Socket error '.$error.': '.@socket_strerror($err);
                                echo '</div>';
                                $notificated = true;
                            }
                        }
                       
                        if (!$notificated) {
                            $output = socket_read($socket, 8192, PHP_BINARY_READ); // Read 8192 bytes of the socket and put it into output.
                            if (!$output) {
                               @socket_close($socket);
                                echo '<div class="notification">';
                                echo 'The socket couldn\'t receive data.<br />';
                                $error = @socket_last_error($socket);
                                echo 'Socket error '.$error.': '.@socket_strerror($err);
                                echo '</div>';
                                $notificated = true;                          
                            }
                           
                            @socket_close($socket);
                           
                            if (!$notificated) {
                                $data = explode($SEP_CHAR, $output);
                                $data[0] = strtolower($data[0]);
                                if ($data[0] == 'plainmsg') {
                                   if ($data[1] == 'Your account has been created!') {
                                      echo '<div class="notification">';
                                        echo 'Your account called "'.$username.'" has been created!<br />You can now log in on the game client! Enjoy the game!';
                                        echo '</div>';
                                   } else if ($data[1] == 'Your username must be at least three characters in length.') {
                                      echo '<div class="notification">';
                                      echo 'Your username is too short, it must be at least three characters long.';
                                      echo '</div>';
                                    } else if ($data[1] == 'Your password must be at least three characters in length.') {
                                        echo '<div class="notification">';
                                      echo 'Your password is too short, it must be at least three characters long.';
                                      echo '</div>';
                                   } else if ($data[1] == 'Your email address cannot be blank.') {
                                      echo '<div class="notification">';
                                      echo 'You didn\'t specify an e-mail address.';
                                      echo '</div>';
                                   } else if ($data[1] == 'Your username must consist of alpha-numeric characters!') {
                                      echo '<div class="notification">';
                                      echo 'Your username must consist of alpha-numeric characters.';
                                      echo '</div>';
                                  } else if ($data[1] == 'Sorry, that account name is already taken!') {
                                      echo '<div class="notification">';
                                      echo 'Sorry, but that account is already in use.';
                                      echo '</div>';
                                   } else {
                                      echo '<div class="notification">';
                                      echo 'An unknown message has been received. Please report this!';
                                      echo '</div>';
                                   }
                                   $notification = true;
                                } else {
                                   echo '<div class="notification">';
                                    echo 'An unknown package has been sent. Please report this!';
                                    echo '</div>';
                                    $notification = true;
                                }
                            }
                        }
                    } else { // We couldn't connect.
                        echo '<div class="notification">';
                        echo 'The server is offline or is not available, try again later.';
                        echo '</div>';
                        $notification = true;
                    }
                }
            }
            echo '<div style="display: block; height: 7px;"></div>';
        ?>

        <form action="" method="post">
            <div class="content">
                <div style="display: block;">
                    <div class="formleft">Username:</div>
                    <div class="formright"><input class="textbox" type="text" id="username" name="username" size="30" /></div>
                </div><br /><br />

                <div style="display: block;">
                    <div class="formleft">Password:</div>
                    <div class="formright"><input class="textbox" type="password" id="password" name="password" size="30" /></div>
                </div><br /><br />

                <div style="display: block;">
                    <div class="formleft">Confirm password:</div>
                    <div class="formright"><input class="textbox" type="password" id="password_check" name="password_check" size="30" /></div>
                </div><br /><br />

                <div style="display: block;">
                    <div class="formleft">E-mail address:</div>
                    <div class="formright"><input class="textbox" type="text" id="email" name="email" size="30" /></div>
                </div><br /><br />

                <div style="display: block;">
                    <div class="formleft">Confirm e-mail address:</div>
                    <div class="formright"><input class="textbox" type="text" id="email_check" name="email_check" size="30" /></div>
                </div><br /><br />

                <div style="width: 100%; display: block;">
                    <input class="createbutton" type="submit" id="submit" name="submit" value="Create Account" />
                </div>
            </div>
        </form>
    </body>
</html>

Ps: minha primeira MSG Embarassed
EIGames
EIGames
Novato
Novato

Mensagens : 9

http://www.naturaonline.log7.net

Ir para o topo Ir para baixo

Ajuda com HTML Empty Re: Ajuda com HTML

Mensagem por MadaraOwner Seg 30 Jul 2012, 10:59

Cara, o negócio aí ta tenso, nunca tinha visto alguém usar php e html desse jeito.. (até porque eu sou novo nisso shuahsau)

se vc puder colocar a parte de CSS fica mais fácil. Mas tipo, quando eu fico perdido no meio das divs eu fico marcando elas com números e olhando no css .-.
MadaraOwner
MadaraOwner
Membro Sênior
Membro Sênior

Mensagens : 276

Ir para o topo Ir para baixo

Ajuda com HTML Empty Re: Ajuda com HTML

Mensagem por fernandobr Seg 30 Jul 2012, 11:14

Essa parte aí é no CSS!
fernandobr
fernandobr
Membro
Membro

Mensagens : 126

http://dbzonline.freevar.com

Ir para o topo Ir para baixo

Ajuda com HTML Empty Re: Ajuda com HTML

Mensagem por jpkadilo Seg 30 Jul 2012, 15:30

Cara encontra a div do quadro e coloca
opacity: 0;
-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 0);
filter: alpha(opacity = 0);
> funciona em todos os navegadores , até IE , é uma propriedade do css3 , pra aumentar a opacity é só alterar o '0' pra valor que você quer,
Uma dica use esse site css3.me la da pra simular/criar/testar essas coisas e ainda gera um código fonte.
avatar
jpkadilo
Membro
Membro

Mensagens : 167

Ir para o topo Ir para baixo

Ajuda com HTML Empty Re: Ajuda com HTML

Mensagem por Conteúdo patrocinado


Conteúdo patrocinado


Ir para o topo Ir para baixo

Ir para o topo

- Tópicos semelhantes

 
Permissões neste sub-fórum
Não podes responder a tópicos