include("bend/funcoes/setup.php"); $conexao=mysql_connect ($servidor_bd, $user_banco, $passwd_banco) or die ('I cannot connect to the database because: ' . mysql_error()); mysql_select_db ($banco); ?>
if ($_REQUEST["album"] == "") { $voltar = "foto.php"; } else { $voltar = "foto_precasamento.php"; } ?>
$strSQL = "select id, titulo, categoria from fotos where categoria = '1' "; $resultado = mysql_query($strSQL, $conexao) or die(mysql_error()); $col = 0; for ($x = 0; $row = mysql_fetch_array($resultado); $x++) { $col++; unset($xml_imagens); if (file_exists("imgs/fotos/".$row["categoria"]."/".$row["id"]."/fotos.xml")) { $xml = simplexml_load_file("imgs/fotos/".$row["categoria"]."/".$row["id"]."/fotos.xml"); unset($xml_imagens); foreach($xml->foto as $fotos) { $xml_imagens["imagem"][] = $fotos->imagem; $xml_imagens["comentario"][] = $fotos->comentario; } } ?>
echo $row[1];?>
/ echo $row["id"];?>/ echo $xml_imagens["imagem"][0];?>" border="1" width="205" height="145" hspace="10" />
if ($col >= 4) { $col = 0; ?>
} } ?>
mysql_close($conexao);?>