select("select * from forum where id='{$_POST['id']}' and post<>'' and userid='{$_SESSION['forum']['id']}'"); if($ary){ $con->uid("update forum set post='{$_POST['post']}' where id='{$_POST['id']}'"); } } if(isset($_GET['delpost'])){ $con=new connect; $con->uid("delete from forum where id='{$_GET['delpost']}' and post<>'' and userid='{$_SESSION['forum']['id']}'"); header("location:/?act=".$_GET['act']."&forums=".$_GET['forums']."&forum=".$_GET['forum']); } if(isset($_GET['page']) && $_GET['page']=='logout') unset($_SESSION['forum']); if(isset($_POST['login'])){ if(chkemail($_POST['email'])){ $con=new connect; $ary=$con->select("select * from user where email='{$_POST['email']}' and valid='1'"); if($ary && $ary[0]['password']==md5($_POST['pass'])){ $_SESSION['forum']['id']=$ary[0]['id']; $_SESSION['forum']['username']=$ary[0]['username']; $_SESSION['forum']['date']=$ary[0]['date']; } } } if(isset($_POST['newreg'])){ if($_POST['botcode']!=$_SESSION['bot']){ $err[]='كد امنيتي صحيح وارد نشده است.'; } else{ if($_POST['username']=='') $err[]='برای ثبت نام در تالارهای گفتگو نیاز به نام کاربری می باشد.'; elseif(strpos($_POST['username'],' ')!==false) $err[]='نام کاربری نمی‌تواند شامل فاصله خالی باشد.'; elseif(isusername($_POST['username'])) $err[]='نام کاربری شما قبلا استفاده شده است.'; if($_POST['email']=='') $err[]='برای ثبت نام در خبرنامه نیاز به ایمیل شما می باشد.'; elseif(!chkemail($_POST['email'])) $err[]='برای ثبت نام در تالارهای گفتگو نیاز به ایمیل معتبر می‌باشد.'; elseif(isemailforum($_POST['email'])) $err[]='آدرس ایمیل وارد شده قبلا در تالارهااستفاده شده است.'; } if(!isset($err)){ $pass=genpass(); $jalali=new jalali; $date=$jalali->numdate(); $con=new connect; $sql="insert into user (username,email,date,password) values ('{$_POST['username']}','{$_POST['email']}','$date','".md5($pass)."')"; $newreg=$con->uid($sql); $message=' کاربر گرامی سلام
اطلاعات دریافتی از شما به شرح ذیل می‌باشد. لطفا از مشخصات زیر برای ورود به تالارها استفاده کنید. آدرس ایمیل: '.$_POST['email'].'
کلمه عبور: '.$pass.'
لطفا از پاسخ دادن به این ایمیل خودداری نمایید.'; @sendMail($_POST['email'],'تالارهای گفتگوی سایت پرده سینما',$message,'cinscreen '); } } if(isset($_POST['send_comment'])){ $err=array(); if($_POST['name']=='') $err[]='فيلد نام پر نشده است.'; if($_POST['body']=='') $err[]='فيلد نظر شما پر نشده است.'; if($_POST['bot']=='') $err[]='فيلد كد امنيتي پر نشده است.'; elseif($_POST['bot']!=$_SESSION['bot']) $err[]='كد امنيتي صحيح وارد نشده است.'; if(!isset($err[0])){ if(get_magic_quotes_gpc()){ $name=$_POST['name']; $body=$_POST['body']; } else{ $name=addslashes($_POST['name']); $body=addslashes($_POST['body']); } $aid=$_POST['id']; $jalali=new jalali; $date=$jalali->namedate(); $con=new connect; $send_comment=$con->uid("insert into comment (name,body,date,aid) values ('$name','$body','$date','$aid')"); } } if(isset($_POST['send_contact'])){ if($_POST['name']=='') $err[]='فيلد نام پر نشده است.'; if($_POST['email']=='') $err[]='فيلد ايميل پر نشده است.'; if(!chkemail($_POST['email'])) $err[]='فيلد ايميل حاوي اطلاعات نامعتبر مي‌باشد.'; if($_POST['title']=='') $err[]='فيلد عنوان شما پر نشده است.'; if($_POST['body']=='') $err[]='فيلد نظر شما پر نشده است.'; if($_POST['bot']=='') $err[]='فيلد كد امنيتي پر نشده است.'; elseif($_POST['bot']!=$_SESSION['bot']) $err[]='كد امنيتي صحيح وارد نشده است.'; if(!isset($err)){ if(get_magic_quotes_gpc()){ $name=$_POST['name']; $email=$_POST['email']; $title=$_POST['title']; $body=$_POST['body']; } else{ $name=addslashes($_POST['name']); $title=addslashes($_POST['title']); $body=addslashes($_POST['body']); $email=addslashes($_POST['email']); } $jalali=new jalali; $date=$jalali->numdate(); $con=new connect; $send_contact=$con->uid("insert into contact (name,email,title,body,date) values ('$name','$email','$title','$body','$date')"); } } if(isset($_POST['sendforums']) && (strlen($_POST['title'])>5 && strlen($_POST['post'])>2)){ $con=new connect; $ary=$con->select("select id from forum order by id desc limit 0,1"); $id=$ary[0]['id']+1; $jalali=new jalali; $date=$jalali->numdate(); $DATE=$jalali->namedate(); $con->uid("insert into forum (id,title,userid,refid,date) values ('$id','{$_POST['title']}','{$_SESSION['forum']['id']}','{$_POST['id']}','$date')"); $con->uid("insert into forum (post,userid,refid,date) values ('{$_POST['post']}','{$_SESSION['forum']['id']}','$id','$DATE')"); } if(isset($_POST['newpost']) && $_POST['post']!=''){ $jalali=new jalali; $date=$jalali->namedate(); $con=new connect; $con->uid("insert into forum (userid,post,refid,date) values ('{$_SESSION['forum']['id']}','{$_POST['post']}','{$_POST['id']}','$date')"); } ?> select("select content from static where page='{$page}'"); $keywords = $ary[0]['keywords']; $description = $ary[0]['description']; } elseif(isset($_GET['gallery']) and $_GET['gallery']>0){ $con = new connect; $ary=$con->select("select keywords,description from album where id='{$_GET['gallery']}'"); $keywords = $ary[0]['keywords']; $description = $ary[0]['description']; } elseif(isset($_GET['id'])){ $con=new connect; $ary=$con->select("select * from article where id='".abs((int)$_GET['id'])."'"); $keywords = $ary[0]['keywords']; $description = $ary[0]['description']; } if(isset($keywords)) echo ''; if(isset($description)) echo ''; ?> پرده سینما | پایگاه خبری و تحلیلی سینمای ایران و جهان
footer();?>
یادآوری کلمه عبور
select("select * from user where email='{$_POST['email']}'")){ $pass=genpass(6); $password=md5($pass); $con->uid("update user set password='{$password}' where id='{$ary[0]['id']}'"); $message=' کاربر گرامی '.$ary[0]['username'].' سلام
کلمه عبور جدید شما به شرح ذیل برایتان ارسال گردیده است. آدرس ایمیل:
'.$_POST['email'].'
کلمه عبور:
'.$pass.'
لطفا از پاسخ دادن به این ایمیل خودداری نمایید.'; if($mail=sendMail($_POST['email'],'تالارهای گفتگوی سایت پرده سینما',$message,'cinscreen ')) echo 'کاربر گرامی کلمه عبور جدید شما به آدرس ایمیل شما ارسال گردید.'; } else echo 'آدرس ایمیل یافت نشد.'; ?>
آدرس ایمیل:
select("select * from forum where id='$id' and post<>'' and userid='{$_SESSION['forum']['id']}'"); if($ary){ ?>
ویرایش ارسال کاربران
ارسال:
" />

ارسال مورد نظر وجود ندارد یا شما مجاز به تغییر آن نیستید.


"; } } private function chpass(){ if(isset($_SESSION['forum'])){ $con=new connect; $ary=$con->select("select photo from user where id='{$_SESSION['forum']['id']}'"); ?>

تغییر کلمه عبور
select("select password from user where id='{$_SESSION['forum']['id']}'"); if($ary[0]['password']==md5($_POST['old'])){ if($con->uid("update user set password='".md5($_POST['new'])."' where id='{$_SESSION['forum']['id']}'")) echo 'پسورد تغییر داده شد.'; unset($_POST); } else echo 'پسورد قدیم صحیح وارد نشده است.'; } ?>
پسورد فعلی:
پسورد جدید:
تکرار پسورد جدید:
تغییر تصویر
select("select photo from user where id='{$_SESSION['forum']['id']}'"); $photo=photoname().ext($type); if($old[0]['photo']!='unknown.jpg'){ unlink('album/'.$old[0]['photo']); $con->uid("delete from photo where name='{$old[0]['photo']}'"); } move_uploaded_file($_FILES['file']['tmp_name'],'album/'.$photo); $con->uid("update user set photo='$photo' where id='{$_SESSION['forum']['id']}'"); //$con->uid("insert into photo (name,tag) values ('$photo','1316557328')"); $con->uid("insert into photo (name,tag) values ('$photo','1316785075')"); $ary=$con->select("select photo from user where id='{$_SESSION['forum']['id']}'"); } ?>
توجه داشته باشید:
۱- عکس ارسالی حداکثر 50 کیلوبایت حجم داشته باشد.
۲- سایز آن حداکثر ۱۰۰در۱۵۰ پیکسل باشد.
تعویض عکس:
ثبت نام سریع در تالارهای گفتگو
'; }?>
ثبت نام شما با موفقیت انجام شد.
ایمیلی حاوی کلمه عبور و سایر اطلاعات دریافت شده برایتان ارسال شده است. برای ورود به سایت از این اطلاعات استفاده نمایید. در صورتیکه این ایمیل را در صندوق پستی خود نیافتید به فولدرهای spam و یا bulk مراجعه نمایید. در اینصورت فراموش نکنید حتما آنرا nospam نمایید.
نام کاربری:
آدرس ایمیل:

کد داخل تصویر را در فیلد زیر وارد کنید.
(فقط حروف کوچک لاتین)
کد امنیتی:
نام کاربری نمی‌تواند شامل فاصله باشد و باید منحصر بفرد باشد.
آدرس ایمیل باید معتبر باشد. زیرا کلمه عبور شما به این آدرس ایمیل ارسال می‌شود.
select("select userid,title,date,refid from forum where id='$id'"); $group=$con->select("select main from forum where id='{$forum[0]['refid']}'"); $user=$con->select("select username from user where id='{$forum[0]['userid']}'"); return array($forum[0]['title'],$forum[0]['date'],$user[0]['username'],$group[0]['main']); } private function username($id){ $con=new connect; $ary=$con->select("select username from user where id='$id'"); return $ary[0]['username']; } private function showforum(){ $con=new connect; $ary=self::forumname($_GET['forum']); if(isset($_GET['s'])) $step=abs((int)$_GET['s']); else $step=1; $sql="select * from forum where refid='{$_GET['forum']}'"; $num=$con->num($sql); $url='?act='.$_GET['act'].'&forums='.$_GET['forums'].'&forum='.$_GET['forum'].'&s='; list($row,$height,$pages)=paging($num,$step-1,20,$url); $sql="select * from forum where refid='{$_GET['forum']}' order by id limit $row,$height"; $forum=$con->select($sql); $lock=$con->select("select `lock` from forum where id='{$_GET['forum']}'"); ?> select("select * from user where id='{$forum[$i]['userid']}'"); ?>
تالارهای گفتگو /
در تاریخ گفته:


تاریخ ثبت نام:
تعداد ارسالها:




ویرایش این ارسالحذف این ارسال
پاسخ جدید:

num("select id from forum where post<>'' and userid='$id'"); return $num; } private function showforums(){ $con=new connect; $ary=$con->select("select id,userid,title,date,`lock` from forum where refid='{$_GET['forums']}' order by id desc"); ?>

تالارهای گفتگو /

نام تالار نویسنده تعداد ارسالها آخرین ارسال
{$ary[$i]['title']}"; if($ary[$i]['lock']) echo 'این تالار قفل است.'; ?>
هیچ تالاری یافت نشد.
عنوان تالار:
توضیحات:
select("select date from forum where refid='$id' order by id desc limit 0,1"); return $ary[0]['date']; } private function forumpost($id){ $con=new connect; $num=$con->num("select id from forum where refid='$id'"); return $num; } private function showgroups(){ $con=new connect; $ary=$con->select("select id,main,detail from forum where main<>''"); ?>

تالارهای گفتگو

نام گروه تعداد تالارها تعداد ارسالها
{$ary[$i]['main']}
{$ary[$i]['detail']}"; ?>
num("select id from forum where post<>'' and refid in (select id from forum where title<>'' and refid='$id')"); return $num; } private function forumscont($id){ $con=new connect; $num=$con->num("select id from forum where title<>'' and refid='$id'"); return $num; } private function forumtitle(){ ?>

سلام <خروج>
تاریخ ثبت نام:
<تغییر کلمه عبور>
ایمیل: پسورد:


کلمه عبور خود را فراموش کرده‌اید؟

تازه‌وارد هستید؟ ثبت نام کنید.



پرده سینما را صفحه خانگی خود کنید
پرده سینما

گالری تصاویر

select("select id,name,tag from album where gallery='1' order by id desc"); if($main){ ?>
گالریهای موجود:
select("select * from album where id='{$_GET['gallery']}'"); $photo=$con->select("select name from photo where tag in (select tag from album where id='{$_GET['gallery']}')"); if($photo){ ?>
پرده سینما
select("select * from ads where id='{$_GET['ads']}'"); if($ary){ $con->uid("update ads set counter='".($ary[0]['counter']+1)."' where id='{$_GET['ads']}'"); ?>

تاریخ ارسال:
 





تبلیغات مورد نظر یافت نشد.




select("select content from static where page='sendads'"); ?>
پرده سینما

درج آگهی

نقد خوانندگان

به نام خدا

جهت درج آگهی با پایگاه اینترنتی "پرده سینما" با تلفن 0919 551 2400 و یا ایمیل cinscreen@gmail.com تماس حاصل کنید.






select("select content from static where page='contactus'"); ?>
پرده سینما

تماس با ما




ضمن تشكر از جنابعالي، به زودي با شما تماس گرفته خواهد شد.







تماس با ما

 به اطلاع مي‌رساند، پس از ارزشيابي فرم ارسالي شما، خطاهاي مشروحه ذيل مشاهده گرديد. پس از اصلاح خطاها، مجددا فرم را ارسال نمائيد.
'; ?>
نام (ضروري):
آدرس ايميل (ضروري):
عنوان (ضروري):
پيام شما (ضروري):
كد امنيتي (ضروري) :
كد امنيتي تركيبي از حروف كوچك انگليسي است. توجه داشته باشيد كه كد امنيتي به كوچك و بزرگ بودن حروف حساس است.


پرده سینما

مقالات سايت




از همراهی‌تان خوشحالیم. امیدواریم پیام شما حاوی توهین یا بحث‌های سیاسی، مذهبی، ملیتی یا تبلیغی نباشد. لطفا از انتشار نظرات نامربوط به متن مقاله بپرهیزید.







select("select * from article where id='".abs((int)$_GET['id'])."'"); $count = $ary[0]['counter']+1; $con->uid("update article set counter='".$count."' where id='".abs((int)$_GET['id'])."'"); if($ary){ if($ary[0]['valid']==1){ ?>

'.self::writer_name($ary[0]['writer']).'
'; echo $ary[0]['body']; ?>
 تاريخ ارسال:
کلید واژه‌ها:

select("select * from comment where aid='{$ary[0]['id']}' and chk='1' and valid='1' order by id desc"); if($coment){ ?>
نظرات خوانندگان
>>>:

+-





فرم ارسال نظرات خوانندگان

 به اطلاع مي‌رساند، پس از ارزشيابي فرم ارسالي شما، خطاهاي مشروحه ذيل مشاهده گرديد. پس از اصلاح خطاها، مجددا فرم را ارسال نمائيد.
'; ?>
نام (ضروري):
نظر شما (ضروري):
كد امنيتي (ضروري) :
كد امنيتي تركيبي از حروف كوچك انگليسي است. توجه داشته باشيد كه كد امنيتي به كوچك و بزرگ بودن حروف حساس است.

مقالات سايت




تنظیمات فنی این صفحه در حال بروز رسانی است. برای مشاهده لطفا در زمان دیگری تلاش نمایید.



مقالات سايت




مقاله‌اي يافت نشد.



')+3); $partb[$i]=substr($partb[$i],strpos($partb[$i],' />')+3); $src=substr($object,strpos($object,'album'),24); //$width=(int)substr($object,strpos($object,'width')+7,4); //$height=(int)substr($object,strpos($object,'height')+8,4); //if($width==0 || $height==0) $object=''.$object.''; //else $object=''; $object=''.$object.''; $partb[$i]=$object.$partb[$i]; } $dummy=''; for($i=0;$iselect("select content from static where page='aboutus'"); ?>
پرده سینما

درباره ما

select("select * from links order by id"); if($ary){ ?>

لینک دوستان ما

select("select aid from selectpage where id>270 and id<275"); if($sel){ ?> select("select * from article where valid='1' and id='".$sel[$i]['aid']."'"); if($main){?>


پرده سینما را صفحه خانگی خود کنید
پرده سینما
num($sql); if(isset($_GET['s'])) $step=abs((int)$_GET['s']); else $step=''; if($step<1) $step=1; list($row,$height,$pages)=paging($num,$step-1,40,"/?c=".abs((int)$_GET['c'])."&s="); $sql="select * from article where valid='1' and cat='".abs((int)$_GET['c'])."' order by id limit $row,$height"; $ary=$con->select($sql); if($ary){ ?> =0;$i-=4){ ?>

مقالات سايت




مقاله‌اي يافت نشد.



<?php echo $ary['title']; ?>


تاريخ ارسال:
select("select `name` from writer where id='$id'"); return $ary[0]['name']; } private function body(){ $con=new connect; $sel=$con->select("select id,aid from selectpage"); ?>


'; self::selected_article2($sel,160,'سینمای ایران'); self::photolink('سینمای ایران');echo '
'; self::most_visited($sel); self::photolink('پربیننده'); self::show_ads355($sel[46]['aid']); self::_4ads(); ?>

select("select title,photo,link,valid from photolink where valid ='1' and id in ('1')"); $width='285'; break; case 'گفتگو۱': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('2')"); $width='285'; break; case 'تاریخ سینما': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('3')"); $width='285'; break; case 'دوبله فارسی': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('4')"); $width='285'; break; case 'کتاب سینمایی': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('5')"); $width='285'; break; case 'طعم سینما': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('6','7','8','9','10')"); $width='285'; break; case 'تئاتر': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('11','12')"); $width='345'; break; case 'راست': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('33','34','35','36','37','38','39','40','41','42')"); $width='285'; break; case 'وسط': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('53','54','55','56','57','58','59','50','51','52')"); $width='345'; break; case 'چپ': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('43','44','45','46','47','48','49','50','51','52')"); $width='285'; break; case 'گفتگو۲': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('13','14')"); $width='345'; break; case 'سینمای ایران': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('15','16')"); $width='345'; break; case 'پربیننده': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('17','18','19','20')"); $width='345'; break; case 'عناوین خبری': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('21')"); $width='285'; break; case 'گالری': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('22')"); $width='285'; break; case 'نگاه هفته': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('23')"); $width='285'; break; case 'آمار فروش': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('24')"); $width='285'; break; case 'سینما و ادبیات': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('25')"); $width='285'; break; case 'معبد خاطره': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('26')"); $width='285'; break; case 'سینمای معاصر': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('27')"); $width='285'; break; case 'مباحث تئوریک': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('28')"); $width='285'; break; case 'خبرنامه': $ary=$con->select("select title,photo,link,valid from photolink where valid ='1' and id in ('29','30','31','32')"); $width='285'; break; } if($ary){ if($position != 'چپ' AND $position != 'راست' AND $position != 'وسط') echo '
'; echo ''; for ($i=0; $i'; echo ''; } } echo '
'.$ary[$i]['title'].'

'; } } private function newsletter(){ ?>
عضویت در خبرنامه
نام:
ایمیل:
كدامنيتي:
عبارت زیر را عینا وارد کنید (فقط حروف کوچک لاتین).
تالارهای گفتگو
تالارهای گفتگو
select("select id,title,preview from article where cat='13' order by id desc limit 0,2"); ?>
نقد خوانندگان
<?php echo $ary[0]['title']; ?> <?php echo $ary[1]['title']; ?>

select("select id,pic1,title from ads where id in (select aid from selectpage where id='47')"); if($ary){ ?> select("select id,pic1,title from ads where id in (select aid from selectpage where id='48')"); if($ary){ ?> select("select id,pic1,title from ads where id in (select aid from selectpage where id='49')"); if($ary){ ?> select("select id,pic1,title from ads where id in (select aid from selectpage where id='50')"); if($ary){ ?>

select("select id,preview,title from article where id in (select aid from selectpage where id='211')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='212')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='213')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='214')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='215')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='216')"); ?>
معبد خاطره‌ها
 
آرشیو معبد خاطره‌ها

select("select id,preview,title from article where id in (select aid from selectpage where id='341')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='342')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='343')"); ?>
تئاتر و تلویزیون



آرشیو تئاتر و تلویزیون

    select($sql); if($ary){ ?>

select("select id,preview,title from article where id in (select aid from selectpage where id='61')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='62')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='63')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='64')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='65')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='66')"); ?> select("select id,preview,title from article where id in (select aid from selectpage where id='67')"); ?>
کتاب سینمایی
 
آرشیو کتاب سینمائی
select("select id,pic1 from ads where id='$id'"); if($ary){ ?>
select("select id,pic1 from ads where id='$id'"); if($ary){ ?>
select("select * from article where id='".$sel[31]['aid']."'"); $ary1=$con->select("select * from article where id='".$sel[32]['aid']."'"); $ary2=$con->select("select * from article where id='".$sel[33]['aid']."'"); //$ary3=$con->select("select * from article where id='".$sel[34]['aid']."'"); $ary4=$con->select("select * from article where id='".$sel[35]['aid']."'"); $ary5=$con->select("select * from article where id='".$sel[36]['aid']."'"); //$ary6=$con->select("select * from article where id='".$sel[37]['aid']."'"); if($ary0){ ?>

'; ?>


'; ?>


'; ?>

'; ?>


'; ?>

select("select aid from selectpage where id='321'"); $order=array('اول','دوم','سوم','چهارم','پنجم','ششم','هفتم','هشتم','نهم','دهم'); if($main=$con->select("select * from election where id='{$sel[0]['aid']}'")){ ?>
نظر سنجی
جهت شرکت در نظر سنجی کلیک کنید
select("select * from article where id='$id'"); if($main){ ?>


select("select aid from selectpage where id='$id'"); $main=$con->select("select * from article where id='{$sel[0]['aid']}'"); if($main){ ?>
زیر ذره‌بین:
select("select aid from selectpage where id='$id'"); $main=$con->select("select * from article where id='{$sel[0]['aid']}'"); if($main){ ?>

select("select aid from selectpage where id='$id'"); $main=$con->select("select * from article where id='{$sel[0]['aid']}'"); if($main){ ?>

یادداشت سردبیر
select("select aid from selectpage where id='$id'"); $main=$con->select("select * from article where id='{$sel[0]['aid']}'"); ?> >
select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>
'.self::writer_name($main[0]['writer']); ?>
select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>
منتخب مقالات
'.self::writer_name($main[0]['writer']); ?>

select("select aid from selectpage where id<151 and id>140 and aid<>'0' order by id"); for($i=0;$iselect("select id,name,tag from album where id='{$sel[$i]['aid']}'"); if($main){ $photo=$con->select("select name from photo where tag='{$main[0]['tag']}' limit 0,1"); ?>
گالری تصاویر
select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>

'.self::writer_name($main[0]['writer']); ?>
    select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>
    select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>
آرشیو اخبار
پربیننده‌ترین مقالات اخیر
    select("select * from article where valid='1' and id='{$id[$i]['aid']}'"); if($main){?>
select("select * from article where valid='1' and id='$m1'"); if($main){?> select("select * from article where valid='1' and id='$m2'"); if($main){?> select("select * from article where valid='1' and id='$m3'"); if($main){?>

'; ?>

 

'; ?>


'; ?>