Nazdarek. Nenajde sa niekto sikovny a ochotny mi poradit s jednou vecou? Mozno pre niekoho to pride ako hlupost, ale ja si s tym uz neviem dat dalej rady. Mam kod na ukazku odoslanych fotiek:
<?php
if ($ok) {
$subor = "a_" . date("Ymd_Gis") . ".html";
$fp = fopen($subor, "w")
or die("nie je mozne vytvorit subor!");
fwrite($fp, "<style>body {background-color: yellow; color: blue}</style>") ;
fwrite($fp, "<body>") ;
fwrite($fp, "<h1 align=center>$album</h1>\n") ;
fwrite($fp, "<h1 align=center><i>$autor</i></h1>\n") ;
fwrite($fp, "<p align=center><i>$popis</i></p>\n<p>\n") ;
fwrite($fp, "<p><p align=center>\n");
for ($i = 1; $i <= 5; $i++) {
$fotka = "fotka" . $i;
$fotka_name = $fotka . "_name";
$fotka_type = $fotka . "_type";
$fotka_size = $fotka . "_size";
$popis = "popis" . $i;
if ($$fotka_type=="image/jpeg" ||
$$fotka_type=="image/pjpeg" ||
$$fotka_type=="image/gif" ||
$$fotka_type=="image/x-png") {
copy($$fotka, "./pictures/{$$fotka_name}") ;
fwrite($fp, "<table align=center><tr><td align=center>") ;
fwrite($fp, "<a href=\"./pictures/{$$fotka_name}\"
target=\"pictures\">") ;
fwrite($fp, "<img src=\"./pictures/{$$fotka_name}\"
alt=\"Fotografia\" border=1 height=500></a>
</td></tr>\n") ;
fwrite($fp, "<tr><td align=center><i>{$$popis}</i>\n") ;
fwrite($fp, "</table>") ;
}
if ($i==1) fwrite($fp, "<br clear=center>\n") ;
}
fwrite($fp, "</p>\n") ;
fwrite($fp, "</body>) ;
fclose($fp) ;
Header("Location: $subor") ;
}
else {
?>
A chcel by som v nom zmenit pozadie...uz som skusal rôzne variaci, cez CSS(div, style...), klasicky html tag, ale stale som sa dopracoval k jednemu. :
Parse error: parse error, unexpected T_STRING
Uz zacinam byt alergicky na toto hlasenie...
Nenajde sa niekto, kto by mi poradil ako do toho html suboru zapisat zmenu pozadia?
Dakujem
|