
Luan Stocco
Membros-
Total de itens
9 -
Registro em
-
Última visita
Sobre Luan Stocco

Luan Stocco's Achievements
0
Reputação
-
mais não tem como fazer isso com virgula?
-
Olá, Estou montando um sistema financeiro, e preciso de um script para calcular a renda do usuario menos o valor da divida. Seria basicamente isso: (exemplo:) <? $valor_1 = "500,00"; $valor_2 = "250,10"; $valor = $valor_1 - $valor_2 echo $valor; ?> Em vez de retornar o valor 249,90 ele esta mostrando 249, ou seja como eu faço para ele calcular os centavos também?? Aguardo!
-
Serio basicamente um SELECT diretamento do banco de dados: <? $sql = mysql_query("SELECT * FROM tabela"); while($mostra = mysql_fetch_array($sql)){ echo $mostra['exemplo']; } ?> não esquecendo da conexao!!!
-
eu num entendi direito, mais vo tenta te ajuda: <? if($nome_empresa == 'sim'){ $db = mysql_query("DELETE FROM CAD_EMPRESA WHERE nome_empresa ='$nome_empresa'"); } ?> pelo que eu entendi acho que é isso!
-
Deu tudo certo não deu mais erro nenhum na login.php, tudo ok!! mais quando eu logo, ele redireciona corretamente para index.php, mais ao invez de mostrar o conteudo do index.php, mostra o conteudo de restrito.php ele ta logado sim, so que mostra que num ta!! o que está acontecendo? Abraço
-
apareceu isto daqui: Warning: session_destroy() [function.session-destroy]: Trying to destroy uninitialized session in /home/luan2608/public_html/_login/login.php on line 5 eu coloquei assim: <?php error_reporting(E_ALL ^ E_NOTICE); session_unset(); session_destroy(); include_once('../config.php'); if ($del == 'sim') { echo "<script>window.location='login.php';</script>"; } if ($acao == 'logar') { if ($login == '') { echo "<script>alert(\"Voce deve Inserir o seu Usuario!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else if ($senha == '') { echo "<script>alert(\"Voce deve Inserir a sua Senha!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $linkid = mysql_connect($host, $user, $pass) or die ('Erro ao Conectar com o Banco de Dados!'); mysql_select_db($banco, $linkid) or die ('Erro ao Selecionar o Banco de Dados'); $resultado = mysql_query("SELECT * FROM LoginRestrit WHERE login='$login' LIMIT 1;", $linkid); $senha_cry = crypt($senha, CRYPT_MD5); if (mysql_num_rows($resultado) != '1') { echo "<script>alert(\"Este Usuario não Existe!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $usuario = mysql_fetch_array($resultado); @mysql_free_result($resultado); @mysql_close($linkid); if ($usuario['senha'] != $senha_cry) { echo "<script>alert(\"Senha Incorreta!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $ID = $usuario['id']; $Nome = $usuario['nome']; $Email = $usuario['email']; $Time = $usuario['time']; $Estadio = $usuario['estadio']; $Capacidade = $usuario['capacidade']; $Userf = $usuario['userf']; $Titulos = $usuario['titulos']; $NivelGG = $usuario['nivelGG']; $Nascimento = $usuario['nascimento']; $Sexo = $usuario['sexo']; $Cidade = $usuario['cidade']; $Estado = $usuario['estado']; $TimeC = $usuario['timeC']; $Login = $usuario['login']; $Senha = $usuario['senha']; $Logado = '1'; session_start('WS'); session_register('ID', 'Nome', 'Email', 'Time', 'Estadio', 'Capacidade', 'Userf', 'Titulos', 'NivelGG', 'Nascimento', 'Sexo', 'Cidade', 'Estado', 'TimeC', 'Login', 'Senha', 'Logado'); header("Location: $pagina_login"); exit(); } } } } ?> Formulario de Login...[/CODEBOX] tem algo errado? Abraço
-
Olá, Eu tentando fazer um script de login com sessions, tudo certo está funcionando perfeitamente, mais por exemplo: Eu já estou logado e vou ate a pagina login.php e me logo novamente ele não aparece a pagina secreta, aparece a pagina do restrito.php veja os codigos: login.php <?php error_reporting(E_ALL ^ E_NOTICE); include_once('../config.php'); if ($acao == 'logar') { if ($login == '') { echo "<script>alert(\"Voce deve Inserir o seu Usuario!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else if ($senha == '') { echo "<script>alert(\"Voce deve Inserir a sua Senha!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $linkid = mysql_connect($host, $user, $pass) or die ('Erro ao Conectar com o Banco de Dados!'); mysql_select_db($banco, $linkid) or die ('Erro ao Selecionar o Banco de Dados'); $resultado = mysql_query("SELECT * FROM LoginRestrit WHERE login='$login' LIMIT 1;", $linkid); $senha_cry = crypt($senha, CRYPT_MD5); if (mysql_num_rows($resultado) != '1') { echo "<script>alert(\"Este Usuario não Existe!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $usuario = mysql_fetch_array($resultado); @mysql_free_result($resultado); @mysql_close($linkid); if ($usuario['senha'] != $senha_cry) { echo "<script>alert(\"Senha Incorreta!\");</script> <script>window.location='java script: history.back(1)'</script>"; } else { $ID = $usuario['id']; $Nome = $usuario['nome']; $Email = $usuario['email']; $Time = $usuario['time']; $Estadio = $usuario['estadio']; $Capacidade = $usuario['capacidade']; $Userf = $usuario['userf']; $Titulos = $usuario['titulos']; $NivelGG = $usuario['nivelGG']; $Nascimento = $usuario['nascimento']; $Sexo = $usuario['sexo']; $Cidade = $usuario['cidade']; $Estado = $usuario['estado']; $TimeC = $usuario['timeC']; $Login = $usuario['login']; $Senha = $usuario['senha']; $Logado = '1'; session_start('WS'); session_register('ID', 'Nome', 'Email', 'Time', 'Estadio', 'Capacidade', 'Userf', 'Titulos', 'NivelGG', 'Nascimento', 'Sexo', 'Cidade', 'Estado', 'TimeC', 'Login', 'Senha', 'Logado'); header("Location: $pagina_login"); exit(); } } } } ?>[/codebox] restrito.php [codebox]<?php error_reporting(E_ALL ^ E_NOTICE); include_once('../config.php'); session_start('WS'); $esta_logado = session_is_registered('Logado'); if ($esta_logado != '1') { $parar = '1'; } else { $sessoes = (phpversion() < '4.1.0') ? $HTTP_SESSION_VARS : $_SESSION; $id_online = $sessoes['ID']; $nome_online = $sessoes['Nome']; $email_online = $sessoes['Email']; $time_online = $sessoes['Time']; $estadio_online = $sessoes['Estadio']; $capacidade_online = $sessoes['Capacidade']; $userf_online = $sessoes['Userf']; $titulos_online = $sessoes['Titulos']; $nivelGG_online = $sessoes['NivelGG']; $nascimento_online = $sessoes['Nascimento']; $sexo_online = $sessoes['Sexo']; $cidade_online = $sessoes['Cidade']; $estado_online = $sessoes['Estado']; $timeC_online = $sessoes['TimeC']; $login_online = $sessoes['Login']; $senha_online = $sessoes['Senha']; $linkid = mysql_connect($host, $user, $pass) or die ('Erro ao Conectar no Banco de Dados'); mysql_select_db($banco, $linkid) or die ('Erro ao Selecionar o Banco de Dados'); $resultado = mysql_query("SELECT nivel FROM $tabela_l WHERE (login='$login_online' && senha='$senha_online') LIMIT 1;", $linkid); $usuario = mysql_fetch_array($resultado); if (mysql_num_rows($resultado) != '1') { $parar = '1'; } else if (isset($admin) && $usuario['nivel'] != '1') { $parar = '1'; } } @mysql_free_result($resultado); @mysql_close($linkid); if (isset($parar)) { ?> Pagina de login... Então, quando eu estou logado e tento me logar novamente aparece a pagina de login do restrito.php dentro da index.php que é a pagina especial para os users cadastrados... e quando eu edito meu cadastro o mesmo ocorre, porque ele e redirecionado para a pagina de logout apos o termino da editação logout.php <? include "../restrito.php"; ?> <?php error_reporting(E_ALL ^ E_NOTICE); include "../config.php"; session_start('WS'); session_destroy(); $logout = 'login.php'; header("Location: $logout"); exit(); ?>[/codebox] não sei o que está acontecendo!! aguardo!! Abraço
-
ninguém sabe me responder????? Abraço
-
Olá, Eu encontrei um sistema de chat muito bom! esta servindo muito para mim! pois bem, quando um usuario acessa o chat, aparece uma mensagem "Usuario: Entrou na Sala as 00:00:00 PM/AM" eu gostaria que quando o usuario sai-se do chat aparece-se uma mensagem "Usuario: Saiu na Sala as 00:00:00 PM/AM" o script é esse: <? if (empty($action)) ShowLoginForm(); elseif ($action == "posts") ShowAddPosts(); elseif ($action == "users") showusers(); elseif ($action == "form") GetInput(); elseif ($action == "logo") showlogo(); elseif ($action == "enter") Login(); function ShowLoginForm() { $time = date ("h:i:s A"); ?> <html> <head> <title>Clan World Stars - .:: CHAT ::.</title> </head> <link href="http://www.trafegogratis.novacontagem.com/_style/style_button.css" rel="stylesheet" type="text/css"> <style type="text/css"> body{ background: #FFF; color: #222; font-family: Verdana, Tahoma, Arial, Trebuchet MS, Sans-Serif, Georgia, Courier, Times New Roman, Serif; font-size: 11px; line-height: 135%; margin: 0px; padding: 0px; text-align: center; } #redirectwrap{ background: #F0F5FA; border: 1px solid #C2CFDF; margin: 200px auto 0 auto; text-align: left; width: 270px; } #redirectwrap h4{ background: #D0DDEA; border-bottom: 1px solid #C2CFDF; color: #3A4F6C; font-size: 14px; margin: 0; padding: 5px; } #redirectwrap p{ margin: 0; padding: 5px; } #redirectwrap p.redirectfoot{ background: #E3EBF4; border-top: 1px solid #C2CFDF; text-align: center; } </style> </head> <script language="JavaScript"> function valida() { if (document.chat.nick.value=='') { alert('Você deve informar seu Nick!'); document.chat.nick.focus(); return false } if (document.chat.nick.value.length < 3 ) { alert('O nick deve ter no Minimo 3 caracteres!'); document.chat.nick.focus(); return false } if (document.chat.nick.value.length > 20 ) { alert('O nick deve ter no Maximo 20 caracteres!'); document.busca1.busca.focus(); return false } } document.chat.nick.focus(); </script> <form onsubmit="return valida()" name="chat" method="post" action="index.php" target="_top"> <body> <div id="redirectwrap"> <h4>Chat - World Stars</h4> <p><center>Nick: <input type="text" name="nick" size="8" MAXLENGTH="20" class="input_chat"> <input type="hidden" name="action" value="enter"> <input type="hidden" name="chat" value="Entrou na sala - <?php echo $time; ?>"> <input type="submit" name="Submit" value="Entrar" class="input_chat_enviar"></center></p> <p class="redirectfoot"><br></p> </div> </body> </form> </html> <?php } function Login() { global $HTTP_SESSION_VARS; global $chat; global $nick; session_start(); session_register("nick", $nick); if ($skin=="") { setCookie ("WSChat","padrão.css", time()+30240000);} ?> <html> <head> <title>Clan World Stars - .:: CHAT ::.</title> </head> <frameset rows="*,70" cols="*,115" > <frame name="posts" src="index.php?action=posts&nick=<?php echo $nick; ?>&chat=<?php echo $chat; ?>" scrolling="auto" noresize frameborder="0" border="0"> <frame name="user" src="index.php?action=users" scrolling="no" noresize" frameborder="0" border="0" > <frame name="form" src="index.php?action=form&nick=<?php echo $nick; ?>" scrolling="no" noresize" frameborder="0" border="0" > <frame name="logo" src="index.php?action=logo" scrolling="no" noresize" frameborder="0" border="0" > </frameset> <noframes> <body> <p>Seu navegador não suporta Iframes!</p> </body> </noframes> </frameset> </html> <?php } function GetInput() { global $HTTP_SESSION_VARS; global $chat; global $nick; global $skin; $skin = $_COOKIE["WSChat"]; $activedir = "./style/"; @chdir($activedir); if ($skin=="") { print '<link rel="stylesheet" href="./style/padrão.css" type="text/css">';} else { ?> <link rel="stylesheet" href="<? echo $activedir.$skin; ?>" type="text/css"><? } ?> <body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> <form onSubmit="return doSubmit" name="chatform" method="post" action="index.php" target="posts" > <table border="0" cellpadding="1" > <tr> <td valign="top" class="avatars"> <a href onClick="sendFace(1)"><img src="./img/smile.gif" alt=":)"></a> <a href onClick="sendFace(2)"><img src="./img/frown.gif" alt=":("></a> <a href onClick="sendFace(3)"><img src="./img/bigsmile.gif" alt=":D"></a> <a href onClick="sendFace(4)"><img src="./img/angry.gif" alt=">("></a> <a href onClick="sendFace(5)"><img src="./img/cool.gif" alt="8)"></a> <a href onClick="sendFace(6)"><img src="./img/tongue.gif" alt=":P"></a> <a href onClick="sendFace(7)"><img src="./img/huh.gif" alt="???"></a> <a href onClick="sendFace(8)"><img src="./img/rolleyes.gif" alt="::)"></a> <a href onClick="sendFace(9)"><img src="./img/embarassed.gif" alt=":-["></a> <a href onClick="sendFace(10)"><img src="./img/lipsrsealed.gif" alt=":-X"></a> <a href onClick="sendFace(11)"><img src="./img/kiss.gif" alt=":-*"></a> <a href onClick="sendFace(12)"><img src="./img/cry.gif" alt=":'("></a> <a href onClick="sendFace(13)"><img src="./img/undecided.gif" alt=":-\\"></a> <a href onClick="sendFace(14)"><img src="./img/wink.gif" alt=";)"></a> </td><td valign="top" > </td></tr> <tr> <td valign="top"> <input type="text" name="chat" size="35" MAXLENGTH=200 onkeypress="if (event.keyCode==13) setTimeout('document.chatform.chat.value=\'\'',20);"> <input type="hidden" name="nick" value="<?php echo $nick; ?>"> <a href="java script:void(doSubmit())" onMouseover="document.images['send'].src='./img/send2.gif'" onMouseout ="document.images['send'].src='./img/send1.gif'"> <img src="./img/send1.gif" name="send" border=0 align="top"></a> </td> </tr></td> <input type="hidden" name="action" value="posts"> <script language="JavaScript"> document.chatform.chat.focus(); </script> </form> </table> <script language="JavaScript"> function makecookie() { var expireDate = new Date expireDate.setMonth(expireDate.getMonth()+6) document.cookie = "skin=" + document.chatform.skin.value + "; expires=" + expireDate.toGMTString() parent.frames[1].document.location='index.php?action=users' parent.frames[3].document.location='index.php?action=logo' parent.frames[0].document.location='index.php?action=posts' parent.frames[2].document.location='index.php?action=form&nick=<?php echo $nick; ?>' document.chatform.chat.focus(); } function sendFace(faceNum) { switch(faceNum) { case 1: document.chatform.chat.value = document.chatform.chat.value + ' :) '; break; case 2: document.chatform.chat.value = document.chatform.chat.value + ' :( '; break; case 3: document.chatform.chat.value = document.chatform.chat.value + ' :D '; break; case 4: document.chatform.chat.value = document.chatform.chat.value + ' >( '; break; case 5: document.chatform.chat.value = document.chatform.chat.value + ' 8) '; break; case 6: document.chatform.chat.value = document.chatform.chat.value + ' :P '; break; case 7: document.chatform.chat.value = document.chatform.chat.value + ' ??? '; break; case 8: document.chatform.chat.value = document.chatform.chat.value + ' ::) '; break; case 9: document.chatform.chat.value = document.chatform.chat.value + ' :-[ '; break; case 10: document.chatform.chat.value = document.chatform.chat.value + ' :-X '; break; case 11: document.chatform.chat.value = document.chatform.chat.value + ' :-* '; break; case 12: document.chatform.chat.value = document.chatform.chat.value + ' :\'( '; break; case 13: document.chatform.chat.value = document.chatform.chat.value + ' :-\\\ '; break; case 14: document.chatform.chat.value = document.chatform.chat.value + ' ;) '; break; } document.chatform.chat.focus(); } function doSubmit() { if(document.chatform.chat.value == '') { alert('Favor, inserir algum texto!'); document.chatform.chat.focus(); return false; } document.chatform.chat.value = document.chatform.chat.value; document.chatform.submit(); document.chatform.chat.value = ''; document.chatform.chat.focus(); return true; } </script> <?php } function showlogo() { global $HTTP_SESSION_VARS; global $skin; $activedir = "./style/"; @chdir($activedir); if ($skin=="") { print '<link rel="stylesheet" href="./style/padrão.css" type="text/css">';} else { ?> <link rel="stylesheet" href="<? echo $activedir.$skin; ?>" type="text/css"><? } ?> <body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> <center> <br> <font face="arial" size="1" color="#000000">Desenvolvido por:</font> <br> <font face="arial" size="2" color="#000000"><b>Luan Stocco</b></font> </center> <? } function ShowAddPosts() { global $HTTP_SESSION_VARS; global $chat; global $nick; global $timeoutseconds; global $timestamp; global $timeout; global $skin; $activedir = "./style/"; @chdir($activedir); $timeoutseconds = 250; $timestamp=time(); $timeout=$timestamp-$timeoutseconds; print '<meta http-equiv="refresh" content="10;URL=index.php?action=posts&nick='.$nick.'">'; echo '<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">'; if ($skin=="") { print '<link rel="stylesheet" href="./style/padrão.css" type="text/css">';} else { ?> <link rel="stylesheet" href="<? echo $activedir.$skin; ?>" type="text/css"><? } include ("config.php"); $svrConn = mysql_connect("$host", "$user", "$pass") or die("<b>Error:</b> Não conseguimos conectar com o banco de dados!"); $dbConn = mysql_select_db("$base", $svrConn) or die ("<b>Error:</b> Não conseguimos encontrar a tabela do banco de dados!"); $chat = strip_tags($chat,'<i><b><a>'); if(!empty($chat)) { $strQuery = "insert into chatScript values(0, '$chat','$nick','$timestamp')"; mysql_query($strQuery); } $strQuery = ("DELETE FROM chatScript WHERE timestamp<$timeout") or die("$useronline $base DELETE Error"); mysql_query($strQuery); $strQuery = "select theText, theNick from chatScript order by pk_Id asc"; $chats = mysql_query($strQuery); echo '<table border="0" width="100%" height="100%" cellpadding="1"> <tr><td valign="top" align="left" width="80%" height="100%" class="chattext">'; while($chatline = mysql_fetch_array($chats)) { print "<font size=\"2\"><b>" . $chatline["theNick"] . ":</b> " . swapFaces($chatline["theText"]) . "</b></i></font><br>"; } echo '</td></tr></table>'; ?> <script language="JavaScript"> scroll(10,600) </script> <? } function showusers() { global $HTTP_SESSION_VARS; global $nick; global $skin; $activedir = "./style/"; @chdir($activedir); print '<meta http-equiv="refresh" content="15;URL=index.php?action=users">'; echo '<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">'; if ($skin=="") { print '<link rel="stylesheet" href="./style/padrão.css" type="text/css">';} else { ?> <link rel="stylesheet" href="<? echo $activedir.$skin; ?>" type="text/css"><? } echo '<table border="0" width="100%" height="100%" cellpadding="1" > <tr>'; echo '<td nowrap valign="top" align="left" width="20%" height="100%" class="online"><b>Usuários On-line:</b><br>'; include ("config.php"); $svrConn = mysql_connect("$host", "$user", "$pass") or die("<b>Error:</b> Não conseguimos conectar com o banco de dados!"); $dbConn = mysql_select_db("$base", $svrConn) or die ("<b>Error:</b> Não conseguimos encontrar a tabela do banco de dados!"); $nicks = array(); $strQuery = "select theNick from chatScript order by theNick asc"; $chats = mysql_query($strQuery); while($chatline = mysql_fetch_array($chats)) { if (!in_array($chatline['theNick'],$nicks)) { $nicks[] = $chatline['theNick']; print "" . $chatline["theNick"] . "<br>"; } } echo '</td></tr></table>'; } function swapFaces($chatLine) { $chatLine = str_replace("::)", "<img src='./img/rolleyes.gif'>", $chatLine); $chatLine = str_replace(":)", "<img src='./img/smile.gif'>", $chatLine); $chatLine = str_replace(":(", "<img src='./img/frown.gif'>", $chatLine); $chatLine = str_replace(":D", "<img src='./img/bigsmile.gif'>", $chatLine); $chatLine = str_replace(">(", "<img src='./img/angry.gif'>", $chatLine); $chatLine = str_replace("8)", "<img src='./img/cool.gif'>", $chatLine); $chatLine = str_replace(":P", "<img src='./img/tongue.gif'>", $chatLine); $chatLine = str_replace("???", "<img src='./img/huh.gif'>", $chatLine); $chatLine = str_replace(":-[", "<img src='./img/embarassed.gif'>", $chatLine); $chatLine = str_replace(":-X", "<img src='./img/lipsrsealed.gif'>", $chatLine); $chatLine = str_replace(':-\\', '<img src=\'./img/undecided.gif\'>', $chatLine); $chatLine = str_replace(":-*", "<img src='./img/kiss.gif'>", $chatLine); $chatLine = str_replace(":'(", "<img src='./img/cry.gif'>", $chatLine); $chatLine = str_replace(";)", "<img src='./img/wink.gif'>", $chatLine); return $chatLine; } ?>[/codebox] Aguardo.. Abraço