السلام عليكم هذا الكود لايعمل ويقوم بعرض فراغ ولايظهر غير الهيدر والفوتر
مع إني متأكد منه أنا وشخص آخر
ولكن مالسبب
كود PHP:
<?
include("config.php");
include("../template/headeradmin.htm");
$format="Y-m-d";
$today=date("Y-m-d",time());
$path = ("../".$filespath);
$dir = opendir($path);
while ($file = readdir($dir)) {
if ($file <> '.' && $file <> '..' && $file <> 'Thumbs.db' && $file <> '.htaccess') {
$fftime = mysql_query("select date from upload where filename='". $file ."'");
if($fftime==$today){
$ssql = "select ipaddress,date from upload where filename='". $file ."'";
$ss = mysql_query($ssql);
while ($rowq = mysql_fetch_array($ss)) {
extract($rowq);
}
$ftime = gmdate($format,$date);
include("../template/shownewfile.htm");
}
}
}
include("../template/footer.htm");
?>
![]()