Jump to content


Grupo Louco

Member Since 08/03/2005
Offline Last Active 24/01/2006, 20:49
-----

Topics I've Started

Mudar Pasta Localhost No Computador.

14/01/2006, 16:37

Bom pessoal.. to usando o easyphp, mas acontece q ele define a pasta raiz Localhost, como sendo uma pasta la no local de instalação dele, eu preciso urgentemente mudar isto para a unidade C: para implementar um pequeno sistema em rede...


Só queria saber como mudar o Localhost..



vlw pessoar.. (^^)

Conhece Um Bom Site De Balada?

05/06/2005, 02:10

ae pessoal.. tava querendo ver alguns bons sites mesmo de baladas.. festas e tal..

mas só conheço os da região aqui que moro..


se puderem me indicar alguns que vc considerem bem profissa.. pra mim te uma base pra um que vo monta.. vlw...

Erro No Servidor?

20/05/2005, 19:52

putz,.. to com um problemão.. montei o site pra coloca no ar.. dai a hospedagem é no site Localone.com.br, la aceita php mysql.. tudo isso...

mas ao colocar a pagina no ar e tentar executar ele naum exibe a pagina.. se for um codigo simples de php.. tipo echo "adasd" ele exibe.. mas a pagina ele simplesmente naum exibe.. alguem saberia o porque desses erros?? vo coloca o codigo abaixo se alguem puder testar em algum outro servidor php pra ver se funciona...

ta fogo descobri o que tem de errado... e preciso coloca o site no ar.. to ferrado....


<?
include"conectar.php"; //inclui o arquivo que conecta com bd
include"links.php";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>T&ocirc; na LATA</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
<!--


function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>

</head>

<body bgcolor="#000000" text="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div id="Meio" style="position:absolute; left:778; top:50; width:1; height:150; z-index:2; background-color: #CCCCCC; layer-background-color: #CCCCCC; border: 1px none #000000;"></div>
<div id="Layer1" style="position:absolute; left:0px; top:10px; width:144px; height:162px; z-index:3;"> 
  <img src="img/barra_calendario.gif"> <CENETER> 
  <iframe name="calendario" src="calendario.php" marginWidth=0 marginHeight=0 scrolling="no" frameborder="0" vspace="0" hspace="0" width="170" height="165" align="top"></iframe><CENETER></div>
<div id="Layer3" style="position:absolute; left:159px; top:9px; width:13px; height:231px; z-index:5"><img src="img/pixelv.gif" width="1" height="590"> 
  <div id="Layer3" style="position:absolute; left:457px; top:0px; width:13px; height:231px; z-index:5"><img src="img/pixelv.gif" width="1" height="590"></div>
</div>
<div id="Layer4" style="position:absolute; left:617px; top:10px; width:142px; height:201px; z-index:6"> 
  <table width="50%" border="0" cellspacing="0" cellpadding="0">
    <tr> 
      <td><img src="img/barra_destaque.gif" width="160" height="24"></td>
    </tr>
    <tr> 
      <td> 
        <?

$consulta = mysql_query("SELECT * FROM tbbalada ORDER BY id DESC") or die (mysql_error());
$num = 2;//quantidade de registro que quer mostrar

for($i=0;$i<$num;$i++){

$foto = mysql_result($consulta,$i,"destaque");
$balada = mysql_result($consulta,$i,"id");
$arquivo = mysql_result($consulta,$i,"arquivo");
$nome = mysql_result($consulta,$i,"nome");
//$consulta2 = mysql_query("SELECT * FROM tbfotos WHERE balada = '".$balada."' AND id = '".$foto."'") or die (mysql_error());


$imagem = ("coberturas/".$arquivo."/".$foto.".jpg");
// pega o tamanho da imagem pra verificar se ela vai de pé ou deitada
$tam = getimagesize ($imagem);
$largura = $tam[0];
$altura = $tam[1];
//////////
if ($altura<$largura){
   $a= 135;
   $b= 93;
}else{
   $a= 93;
   $b= 135;
}

print ("<tr> <td><BR><STRONG> <CENTER><a href='cobertura.php?balada=".$balada."'><img src='".$imagem."' width='".$a."' height=
'".$b."' border='0'><BR> ".$nome." </a></CENTER></STRONG>");

}

?>
      </td>
    </tr>

   <tr>
       <td>&nbsp;&nbsp;&nbsp;</td>
      </tr>

   <tr>
       <td><img src="img/barra_coberturas.gif"></td>
      </tr>

   <tr>
      <td height='12' bgcolor="#EFEFEF">&nbsp;&nbsp;&nbsp;</td>
   </tr>	
   <tr>
        <td height='02'><img src="img/separator.gif"></td>
   </tr>
<?
//    exibe 10 ultimas na lista a direita
$consulta = mysql_query("SELECT * FROM tbbalada ORDER BY id DESC") or die (mysql_error());
$num = 15;//quantidade de registro que quer mostrar

for($i=0;$i<$num;$i++){

$foto = mysql_result($consulta,$i,"destaque");
$balada = mysql_result($consulta,$i,"id");
$arquivo = mysql_result($consulta,$i,"arquivo");
$nome = mysql_result($consulta,$i,"nome");
$dia = mysql_result($consulta,$i,"dia");
$mes = mysql_result($consulta,$i,"mes");

$datar = $dia."/".$mes;

print ("<tr>
          <td bgcolor='#DBDBDB'><a href='cobertura.php?balada=".$balada."'>&nbsp;&nbsp;<STRONG>".$datar." - ".$nome."</STRONG></a></td>
     </tr>");

}
$i=0;




?>
      
      <tr>
        <td height='02'><img src="img/separator.gif"></td>
   </tr>
   <tr>
        <td height='15' bgcolor='#EFEFEF'></td>
   </tr>   
  </table>
	

  </p>
</div>
<?
$consulta = mysql_query("SELECT * FROM tbbalada ORDER BY id DESC") or die (mysql_error());
$num = 4;//quantidade de registro que quer mostrar

for($i=0;$i<$num;$i++){

$balada = mysql_result($consulta,$i,"id");
$arquivo = mysql_result($consulta,$i,"arquivo");
$nome = mysql_result($consulta,$i,"nome");
$imagem = ("coberturas/".$arquivo."/capa.jpg");

  if($i==0){
    echo ("<div id='Layer6' style='position:absolute; left:215px; top:83px; width:135px; height:47px; z-index:9'><a href='cobertura.php?balada=".$balada."'><img src='".$imagem."' width='150' height='70' border='0'></a></div>");
  } elseif($i==1) {
    echo ("<div id='Layer6' style='position:absolute; left:408px; top:83px; width:135px; height:47px; z-index:9'><a href='cobertura.php?balada=".$balada."'><img src='".$imagem."' width='150' height='70' border='0'></a></div>");
  }elseif($i==2) {
    echo ("<div id='Layer6' style='position:absolute; left:215px; top:185px; width:135px; height:47px; z-index:9'><a href='cobertura.php?balada=".$balada."'><img src='".$imagem."' width='150' height='70' border='0'></a></div>");
  } elseif($i==3) {
    echo ("<div id='Layer6' style='position:absolute; left:408px; top:185px; width:135px; height:47px; z-index:9'><a href='cobertura.php?balada=".$balada."'><img src='".$imagem."' width='150' height='70' border='0'></a></div>");
  }
}

?>
<div id="Layer5" style="position:absolute; left:0px; top:202px; width:140px; height:392px; z-index:9"> 
  <table width="75%" border="0" cellpadding="0" cellspacing="0">
    <tr> 
      <td><img src="img/barra_busca.gif"></td>
    </tr>
    <tr> 
      <td><div align="center"> 
          <form name="frmbusca" method="post" action="busca.php">
            <p> <br>
              <select name="select">
                <option value="nome" selected>Nome</option>
                <option value="evento">Evento</option>
              </select>
            </p>
            <p> 
              <input type="text" name="textfield">
            </p>
            <p> 
              <input name="imageField" type="image" src="img/btnbusca.gif" width="72" height="17" border="0">
            </p>
          </form>
        </div></td>
    </tr>
    <tr> 
      <td><img src="img/barra_patrocinio.gif"></td>
    </tr>
	<tr> 
      <td> <div align="center"><img src="img/ban_esq.jpg" width="155" height="211"></div></td>
    </tr>

  </table>
</div>
<div id="Layer2" style="position:absolute; left:174px; top:3px; width:412px; height:97px; z-index:8"><img src="img/fundo.jpg" width="414" height="282"></div>
<div id="Layer10" style="position:absolute; left:1px; top:599px; width:328px; height:101px; z-index:15"> 
  <table width="98%" border="0" cellspacing="0" cellpadding="0">
    <tr> 
      <td><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"></td>
    </tr>
    <tr> 
      <td> 
        <?

   include"teste.php";

   ?>
        <div align="center"></div>
        <div align="center"></div>
        <div align="center"></div></td>
    </tr>
    <tr> 
      <td><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"><img src="img/pixel.gif" width="4" height="1"></td>
    </tr>
  </table>
  <br>
  <table width="236%" height="58" border="0" cellpadding="0" cellspacing="0">
    <tr> 
      <td>&nbsp;</td>
    </tr>
    <tr> 
      <td>&nbsp;</td>
    </tr>
    <tr> 
      <td> 
        <?

   include"fim.php";

   ?>
      </td>
    </tr>
  </table>
</div>
<div id="Layer6" style="position:absolute; left:182px; top:318px; width:408px; height:257px; z-index:16"></div>
</body>
</html>



esse arquivo esta aqui http://www.tonalata.com/site/meio.php

Erro Na Exibição

14/05/2005, 04:45

bom, é o seguinte. eu tinha montado um sisteminha pra cadastras as imagens no bd.. no meu pc ele tava rodando normalzinho.. só que na hora que ele vai pra internet.. e roda na net.. ele diferencia as imagens salvas com a extensão .jpeg de .JPEG agora naum sei pq ta dando esse erro...

vo te que muda todas as fotos pra .jpeg ou tem algum jeito de burlar isto?

Como Fazer Ele Verificar Se Naum Existe

04/05/2005, 03:46

ae amizade.. eu denovo aqui... to com um problema.. vo fazer com que a variavel recebida seja pelo GET seja puzado no banco.. por exemplo..


vem a variavel 4 pelo GET e ele vai no banco e puxa o registro que tem a ID 4...


mas eu queria que ele verificasse antes se existe esse registro no bd..

é meio idiota.. mas naum sei como faze isso, to me matando aqui as 4 da manhã.. se alguem souber como fazer isso.. vlW!

IPB Skin By Virteq