View Single Post
  #7  
Old 21st July 2013, 16:41
Giorgatzelos's Avatar
Giorgatzelos Giorgatzelos is offline
Senior Member
 
Join Date: Nov 2009
Greece
Posts: 300
Default
Hi i want for each theme i have these lines to be defined in latest_images.php.
example:

Code:
if($theme == 'archeCtypo_Original')
{
                    $img1 = "<b><font color=#2f74b3>" . $dispname . "</color></b><br><b><font color=white>".$row["added"]."</color></b><br><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='120' width='170' onmouseover=\" return overlib('<center><h1><b>Στιγμιότυπα:</b></h1></center><hr><table width=100%><br><tr><td><img src=$simg1 width=250 border=0></td><td><img src=$simg2 width=250 border=0><img src=$simg3 width=250 border=0><img src=$simg4 width=250 border=0></td></tr></table>', CENTER, HEIGHT, 195, WIDTH, 300, FGCOLOR, '#313131');\" onmouseout=\"return nd();\"></a><br><font color=\"green\"><b>Τροφοδότες $seed </font></b><br> <font color=\"red\"><b>Αποδέκτες $leech </font></b><br><b><font color=#2f74b3>Σχόλια: <a href=\"details.php?id=".$row["id"].$hit."\">" . $row["comments"] . "</a></b><br>";
                    $img2 = "<b>" . $dispname . "</b><br><b>".$row["added"]."</b><br><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='120' width='170' onmouseover=\" return overlib('<center><h1><b>Στιγμιότυπα:</b></h1></center><hr><table width=100%><br><br><br><br><br><tr><td><center><font color=red size=4><b>Sorry no screens available</b></font></center></td></tr></table>', CENTER, HEIGHT, 250, WIDTH, 300, FGCOLOR, '#313131');\" onmouseout=\"return nd();\"></a><br><font color=\"green\"><b>Τροφοδότες $seed </font></b><br> <font color=\"red\"><b>Αποδέκτες $leech </font></b><br><b><font color=#2f74b3>Σχόλια: <a href=\"details.php?id=".$row["id"].$hit."\">" . $row["comments"] . "</a></b><br>";
}
if theme2...
if theme3...
if theme4...
end if...

Can anyone help me with that?


PHP Code:
                    $img1 "<b><font color=#2f74b3>" $dispname "</color></b><br><b><font color=white>".$row["added"]."</color></b><br><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='120' width='170' onmouseover=\" return overlib('<center><h1><b>Στιγμιότυπα:</b></h1></center><hr><table width=100%><br><tr><td><img src=$simg1 width=250 border=0></td><td><img src=$simg2 width=250 border=0><img src=$simg3 width=250 border=0><img src=$simg4 width=250 border=0></td></tr></table>', CENTER, HEIGHT, 195, WIDTH, 300, FGCOLOR, '#313131');\" onmouseout=\"return nd();\"></a><br><font color=\"green\"><b>Τροφοδότες $seed </font></b><br> <font color=\"red\"><b>Αποδέκτες $leech </font></b><br><b><font color=#2f74b3>Σχόλια: <a href=\"details.php?id=".$row["id"].$hit."\">" $row["comments"] . "</a></b><br>";
                    
$img2 "<b>" $dispname "</b><br><b>".$row["added"]."</b><br><a href='$siteurl/details.php?id=$row[id]'><img border='0' src='$row[post_img]' alt=\"$altname / $cat\" height='120' width='170' onmouseover=\" return overlib('<center><h1><b>Στιγμιότυπα:</b></h1></center><hr><table width=100%><br><br><br><br><br><tr><td><center><font color=red size=4><b>Sorry no screens available</b></font></center></td></tr></table>', CENTER, HEIGHT, 250, WIDTH, 300, FGCOLOR, '#313131');\" onmouseout=\"return nd();\"></a><br><font color=\"green\"><b>Τροφοδότες $seed </font></b><br> <font color=\"red\"><b>Αποδέκτες $leech </font></b><br><b><font color=#2f74b3>Σχόλια: <a href=\"details.php?id=".$row["id"].$hit."\">" $row["comments"] . "</a></b><br>"

Last edited by Giorgatzelos; 21st July 2013 at 17:39.
Reply With Quote