if ($_REQUEST["album"] == "")
{
$voltar = "foto.php";
}
else
{
$voltar = "foto_precasamento.php";
}
?>
$strSQL = "select id, titulo, categoria from fotos where id = '".$_REQUEST["album"]."' ";
$resultado = mysql_query($strSQL, $conexao);
$titulo = mysql_result($resultado, 0, "titulo");
$categoria = mysql_result($resultado, 0, "categoria");
echo " ".$titulo;
?>
$album = $_REQUEST["album"];
if (file_exists("imgs/fotos/".$categoria."/".$_REQUEST["album"]."/fotos.xml"))
{
$xml = simplexml_load_file("imgs/fotos/".$categoria."/".$_REQUEST["album"]."/fotos.xml");
unset($xml_imagens);
foreach($xml->foto as $fotos)
{
$xml_imagens["imagem"][] = $fotos->imagem;
$xml_imagens["comentario"][] = $fotos->comentario;
}
}
?>
//criando tabela
$x = 0;
for ($cont = 0; $cont < sizeof($xml_imagens["imagem"]); $cont++ )
{
$x++;
print "";
$img = @imagecreatefromjpeg('imgs/fotos/'.$categoria.'/'.$album.'/'.$xml_imagens["imagem"][$cont]);//$w = imagesx($img);$h = imagesy($img);
print "";
print " | ";
if ($x >= 4)
{
print "
| ";
$x=0;
}
}
?>