uid("update forum set title='{$_POST['title']}' , refid='{$_POST['forum']}' , userid='{$_POST['user']}' where id='{$_POST['id']}'"); } if(isset($_POST['edit_post'])){ $con=new connect; $con->uid("update forum set post='{$_POST['post']}' , refid='{$_POST['forum']}' , userid='{$_POST['user']}' where id='{$_POST['id']}'"); } if(isset($_GET['deluser_forum'])){ $con=new connect; $con->uid("delete from user where id='{$_GET['deluser_forum']}'"); header("location:/pikrin.php?act=18&c=4"); } if(isset($_GET['uservalid_forum'])){ $valid=substr($_GET['uservalid_forum'],0,1)==1?'0':'1'; $id=substr($_GET['uservalid_forum'],1); $con=new connect; $con->uid("update user set valid='$valid' where id='$id'"); header("location:/pikrin.php?act=18&c=4"); } if(isset($_GET['locktitle_forum'])){ $locks=substr($_GET['locktitle_forum'],0,1); $lock=$locks==1?0:1; $id=substr($_GET['locktitle_forum'],1); $con=new connect; $sql="update `forum` set `lock`='$lock' where `id`='$id'"; $con->uid($sql); } if(isset($_POST['edit_comment'])){ $con=new connect; $con->uid("update comment set body='{$_POST['body']}' where id='{$_POST['id']}'"); } if(isset($_POST['newmain_forum'])){ $con=new connect; $con->uid("insert into `forum` (`main`,`detail`) values ('{$_POST['main']}','{$_POST['detail']}')"); } if(isset($_GET['deltitle_forum'])){ $con=new connect; $con->uid("delete from forum where refid='{$_GET['deltitle_forum']}'"); $con->uid("delete from forum where id='{$_GET['deltitle_forum']}'"); } if(isset($_GET['delmain_forum'])){ $con=new connect; $con->uid("delete from forum where id='{$_GET['delmain_forum']}'"); } if(isset($_POST['editmain_forum'])){ $con=new connect; $con->uid("update forum set main='{$_POST['main']}' , detail='{$_POST['detail']}' where id='{$_GET['editmain_forum']}'"); } if(isset($_GET['isgallery'])){ $g_status=substr($_GET['isgallery'],0,1); if($g_status) $g_status=0; else $g_status=1; $id=substr($_GET['isgallery'],1); $con=new connect; $con->uid("update album set gallery='$g_status' where id='$id'"); } if(isset($_POST['send2newsletter'])){ $body=str_replace('src="album/','src="http://www.cinscreen.com/album/',stripslashes($_POST['body'])); for($i=0;$i این ایمیل بنابه عضویت جنابعالی در لیست خبرنامه برای شما ارسال گردیده است. برای لغو عضویت اینجا را کلیک کنید. '; @sendMail($_POST['email'][$i],'خبرنامه پرده سینما',$message,'cinscreen '); } } if(isset($_POST['send2newsletter'])){ if($_POST['name']=='') $err[]='برای ثبت نام در خبرنامه نیاز به نام شما می باشد.'; if($_POST['email']=='') $err[]='برای ثبت نام در خبرنامه نیاز به ایمیل شما می باشد.'; elseif(!chkemail($_POST['email'])) $err[]='برای ثبت نام در خبرنامه نیاز به ایمیل معتبر می باشد.'; elseif(isemail($_POST['email'])) $err[]='ایمیل شما قبلا در خبرنامه ثبت شده است.'; if(!isset($err)){ $jalali=new jalali; $date=$jalali->numdate(); $con=new connect; $res=$con->uid("insert into newsletter (name,email,date) values ('{$_POST['name']}','{$_POST['email']}','$date')"); } } if((isset($_POST['edit_newsletter']) && chkemail($_POST['email'])) && ($_POST['name']!='')){ $con=new connect; $con->uid("update newsletter set name='{$_POST['name']}', email='{$_POST['email']}' where id='{$_POST['newsletter_id']}'"); } if(isset($_POST['email']) && chkemail($_POST['email'])){ $sql="select * from `login` where `email`='".$_POST['email']."'"; $con=new connect; if($con->num($sql)==1){ $ary=$con->select($sql); if($ary[0]['pword']==$_POST['pword']){ $_SESSION['email']=$ary[0]['email']; $_SESSION['pword']=$ary[0]['pword']; } } } if(isset($_POST['sendarticle'])){ if(get_magic_quotes_gpc()){ $title=$_POST['title']; $body=stripslashes($_POST['body']); $preview=$_POST['preview']; $keywords=$_POST['keywords']; $description=$_POST['description']; } else{ $title=addslashes($_POST['title']); $body=$_POST['body']; $preview=addslashes($_POST['preview']); $keywords=addslashes($_POST['keywords']); $description=addslashes($_POST['description']); } $cat=$_POST['cat']; $valid=$_POST['valid']; $writer=$_POST['writer']; $jalali=new jalali; $date=$jalali->numdate(); $con=new connect; $send=$con->uid("insert into `article` (`title`,`body`,`keywords`,`description`,`preview`,`cat`,`writer`,`date`,`valid`) values ('$title','$body','$keywords','$descriptions','$preview','$cat','$writer','$date','$valid')"); } if(isset($_POST['hmpic'])){ if($_POST['name']!=''){ $jalali=new jalali(); $date=$jalali->numdate(); $tag=date(U); $sql="insert into album (`name`,`tag`,`date`) values ('".$_POST['name']."','$tag','$date')"; $con=new connect; if($uid=$con->uid($sql)){ $photo=array(); for($i=0;$i<$_POST['hmpic'];$i++){ $file=$_FILES['photo']['tmp_name'][$i]; //echo chkimage($file); if($type=chkimage($file)){ $photo=photoname().ext($type); $sql="insert into photo (`name`,`tag`) values ('$photo','$tag')"; if(move_uploaded_file($file,'album/'.$photo)){ chmod('album/'.$photo,0777); $res=$con->uid($sql); } } } } } } if(isset($_POST['addphoto']) && $type=chkimage($_FILES['photo']['tmp_name'])){ $photo=photoname().ext($type); $sql="select tag from album where id='".$_GET['show_album']."'"; $con=new connect; $tag=$con->select($sql); $sql="insert into photo (`name`,`tag`) values ('$photo','".$tag[0]['tag']."')"; if(move_uploaded_file($_FILES['photo']['tmp_name'],'album/'.$photo)){ chmod('album/'.$photo,0777); $res=$con->uid($sql); } } if(isset($_POST['ed_album'])){ $sql="update album set name='".$_POST['name']."' where id='".$_POST['id']."'"; $con=new connect; $res=$con->uid($sql); } if(isset($_POST['del_album'])){ $sql="select tag from album where id='".$_POST['id']."'"; $con=new connect; if($con->num($sql)){ $album=$con->select($sql); $sql="select * from photo where tag='".$album[0]['tag']."'"; if($con->num($sql)>0){ $photo=$con->select($sql); for($i=0;$iuid($sql); } } $sql="delete from album where id='".$_POST['id']."'"; $con->uid($sql); } if(isset($_POST['del_photo'])){ $sql="select name from photo where id='".$_POST['id']."'"; $con=new connect; $ary=$con->select($sql); if($ary){ $sql="delete from photo where id='".$_POST['id']."'"; if($con->uid($sql)){ if(is_file('album/'.$ary[0]['name'])) @unlink('album/'.$ary[0]['name']); } } } if(isset($_POST['ch_photo']) && $type=chkimage($_FILES['photo']['tmp_name'])){ $sql="select name from photo where id='".$_POST['id']."'"; $con=new connect; $ary=$con->select($sql); if($ary){ $name=substr($ary[0]['name'],0,strpos($ary[0]['name'],'.')).ext($type); if(is_file('album/'.$ary[0]['name'])){ @unlink('album/'.$ary[0]['name']); @move_uploaded_file($_FILES['photo']['tmp_name'],'album/'.$name); chmod('album/'.$name,0777); } } } if(isset($_GET['v'])){ $status=substr($_GET['v'],0,1)=='1'?'0':'1'; $id=substr($_GET['v'],1); $con=new connect; $con->uid("update `article` set valid='$status' where id='$id'"); } if(isset($_GET['chk_contact'])){ $status=substr($_GET['chk_contact'],0,1)=='1'?'0':'1'; $id=substr($_GET['chk_contact'],1); $con=new connect; $con->uid("update `contact` set chk='$status' where id='$id'"); } if(isset($_GET['ans_contact'])){ $status=substr($_GET['ans_contact'],0,1)=='1'?'0':'1'; $id=substr($_GET['ans_contact'],1); $con=new connect; $con->uid("update `contact` set answered='$status' where id='$id'"); } if(isset($_GET['chk_comment'])){ $status=substr($_GET['chk_comment'],0,1)=='1'?'0':'1'; $id=substr($_GET['chk_comment'],1); $con=new connect; $con->uid("update `comment` set chk='$status' where id='$id'"); } if(isset($_GET['valid_comment'])){ $status=substr($_GET['valid_comment'],0,1)=='1'?'0':'1'; $id=substr($_GET['valid_comment'],1); $con=new connect; $con->uid("update `comment` set valid='$status' where id='$id'"); } if(isset($_POST['ed_article'])){ if(get_magic_quotes_gpc()){ $title=$_POST['title']; $body=$_POST['body']; $preview=$_POST['preview']; $keywords=$_POST['keywords']; $description=$_POST['description']; $date=$_POST['date']; } else{ $title=addslashes($_POST['title']); $body=addslashes($_POST['body']); $preview=addslashes($_POST['preview']); $keywords=addslashes($_POST['keywords']); $description=addslashes($_POST['description']); $date=addslashes($_POST['date']); } $cat=$_POST['cat']; $writer=$_POST['writer']; $con=new connect; $sql="update `article` set title='$title',body='$body',keywords='$keywords',description='$description',preview='$preview',cat='$cat',writer='$writer',date='$date' where id='".$_POST['id']."'"; $edit=$con->uid($sql); } if(isset($_POST['del_comment'])){ $con=new connect; $del_article=$con->uid("delete from comment where id='".$_POST['id']."'"); } if(isset($_POST['del_contact'])){ $con=new connect; $del_article=$con->uid("delete from contact where id='".$_POST['id']."'"); } if(isset($_POST['del_article'])){ $con=new connect; $del_article=$con->uid("delete from article where id='".$_POST['id']."'"); } if(isset($_POST['arange'])){ $con=new connect; for($i=0;$iuid("update selection set aid='".$_POST['select'][$i]."' where id='".$_POST['id'][$i]."'"); } if(isset($_POST['elect_id'])){ $con=new connect; if(isset($_POST['ed_election'])){ $sql="update `election` set `q`='{$_POST['q']}',`photo`='{$_POST['photo']}',`r1`='{$_POST['r1']}' where `id`='{$_POST['elect_id']}'"; } elseif(isset($_POST['ed_other_election'])){ $sql="update `election` set `q`='{$_POST['q']}',`photo`='{$_POST['photo']}',`r1`='{$_POST['r1']}',`r2`='{$_POST['r2']}',`r3`='{$_POST['r3']}',`r4`='{$_POST['r4']}',`r5`='{$_POST['r5']}',`r6`='{$_POST['r6']}',`r7`='{$_POST['r7']}',`r8`='{$_POST['r8']}',`r9`='{$_POST['r9']}',`r10`='{$_POST['r10']}' where `id`='{$_POST['elect_id']}'"; } $con->uid($sql); } if(isset($_POST['sendsel'])) { $con=new connect(); switch($_GET['g']){ case '1': for($i=1;$i<21;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-1]}' where `id`='{$i}'"; $con->uid($sql); } break; case '2': for($i=31;$i<38;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-31]}' where `id`='{$i}'"; $con->uid($sql); } break; case '3': for($i=41;$i<51;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-41]}' where `id`='{$i}'"; $con->uid($sql); } break; case '4': for($i=61;$i<71;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-61]}' where `id`='{$i}'"; $con->uid($sql); } break; case '5': for($i=81;$i<91;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-81]}' where `id`='{$i}'"; $con->uid($sql); } break; case '6': for($i=101;$i<111;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-101]}' where `id`='{$i}'"; $con->uid($sql); } break; case '7': for($i=121;$i<131;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-121]}' where `id`='{$i}'"; $con->uid($sql); } break; case '8': for($i=141;$i<151;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-141]}' where `id`='{$i}'"; $con->uid($sql); } break; case '9': for($i=161;$i<171;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-161]}' where `id`='{$i}'"; $con->uid($sql); } break; case '10': for($i=181;$i<201;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-181]}' where `id`='{$i}'"; $con->uid($sql); } break; case '11': for($i=211;$i<217;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-211]}' where `id`='{$i}'"; $con->uid($sql); } break; case '12': for($i=221;$i<231;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-221]}' where `id`='{$i}'"; $con->uid($sql); } break; case '13': for($i=241;$i<251;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-241]}' where `id`='{$i}'"; $con->uid($sql); } break; case '14': for($i=261;$i<262;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-261]}' where `id`='{$i}'"; $con->uid($sql); } break; case '15': for($i=266;$i<268;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-266]}' where `id`='{$i}'"; $con->uid($sql); } break; case '16': for($i=271;$i<275;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-271]}' where `id`='{$i}'"; $con->uid($sql); } break; case '17': for($i=281;$i<282;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-281]}' where `id`='{$i}'"; $con->uid($sql); } break; case '18': for($i=291;$i<292;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-291]}' where `id`='{$i}'"; $con->uid($sql); } break; case '19': for($i=301;$i<302;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-301]}' where `id`='{$i}'"; $con->uid($sql); } break; case '20': for($i=311;$i<312;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-311]}' where `id`='{$i}'"; $con->uid($sql); } break; case '21': for($i=321;$i<322;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-321]}' where `id`='{$i}'"; $con->uid($sql); } break; case '22': for($i=331;$i<332;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-331]}' where `id`='{$i}'"; $con->uid($sql); } break; case '23': for($i=341;$i<344;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-341]}' where `id`='{$i}'"; $con->uid($sql); } break; case '24': for($i=351;$i<352;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-351]}' where `id`='{$i}'"; $con->uid($sql); } break; case '25': for($i=361;$i<362;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-361]}' where `id`='{$i}'"; $con->uid($sql); //echo $sql.'
'; } break; case '26': for($i=0;$i<62;$i++){ $id=$i+1; $sql="update photolink set `title`='{$_POST['title'.$i]}', `link`='{$_POST['link'.$i]}', `photo`='{$_POST['photo'.$i]}', `valid`='{$_POST['valid'.$i]}' where id='$id'"; $con->uid($sql); //echo $sql.'
'; } break; case '27': for($i=371;$i<382;$i++){ $sql="update `selectpage` set `aid`='{$_POST['select'][$i-371]}' where `id`='{$i}'"; $con->uid($sql); } break; } } if(isset($_POST['send_ads'])){ $con=new connect; $jalali=new jalali; $date=$jalali->numdate(); $sql="insert into ads (title,body,link,pic1,pic2,date) values ('{$_POST['title']}','{$_POST['body']}','{$_POST['link']}','{$_POST['pic1']}','{$_POST['pic2']}','$date')"; if($con->uid($sql)) header("location pikrin.php"); } if(isset($_POST['send_election'])){ $con=new connect; if(isset($_POST['photo'])) $photo=$_POST['photo']; else $photo=''; $jalali=new jalali; $date=$jalali->numdate(); $sql="insert into election (q,photo,type,r1,date) values ('{$_POST['q']}','{$_POST['photo']}','1','{$_POST['r1']}','$date')"; $send_election=$con->uid($sql); } if(isset($_POST['send_other_election'])){ $con=new connect; if(isset($_POST['photo'])) $photo=$_POST['photo']; else $photo=''; $jalali=new jalali; $date=$jalali->numdate(); $sql="insert into election (q,photo,type,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,date) values ('{$_POST['q']}','{$_POST['photo']}','2','{$_POST['r1']}','{$_POST['r2']}','{$_POST['r3']}','{$_POST['r4']}','{$_POST['r5']}','{$_POST['r6']}','{$_POST['r7']}','{$_POST['r8']}','{$_POST['r9']}','{$_POST['r10']}','$date')"; $send_other_election=$con->uid($sql); } if(isset($_POST['send_writer']) && $_POST['name']!=''){ $con=new connect; $con->uid("insert into `writer` (`name`) values ('".$_POST['name']."')"); } if(isset($_POST['edit_writer']) && $_POST['name']!=''){ $con=new connect; $con->uid("update `writer` set `name`='".$_POST['name']."' where id='".$_POST['id']."'"); } if(isset($_POST['delete_writer'])){ $con=new connect; $con->uid("delete from `writer` where id='".$_POST['id']."'"); } if(isset($_POST['send_link'])){ $con=new connect; if(substr($_POST['link'],0,7)=='http://' || substr($_POST['link'],0,7)=='HTTP://') $link=$_POST['link']; else $link='http://'.$_POST['link']; switch($_POST['position']){ case 'last': $sql="insert into links (name,link) values ('{$_POST['name']}','$link')"; break; case 'first': $ary=$con->select("select id from links order by id"); for($i=count($ary)-1;$i>=0;$i--){ $id=$ary[$i]['id']+1; $sql="update links set id='$id' where id='{$ary[$i]['id']}'"; $con->uid($sql); } $sql="insert into links (id,name,link) values ('1','{$_POST['name']}','$link')"; break; case 'before': $start=$_POST['newid']; $ary=$con->select("select id from links where id>='$start' order by id"); for($i=count($ary)-1;$i>=0;$i--){ $id=$ary[$i]['id']+1; $sql="update links set id='$id' where id='{$ary[$i]['id']}'"; $con->uid($sql); } $sql="insert into links (id,name,link) values ('$start','{$_POST['name']}','$link')"; break; case 'after': $start=$_POST['newid']+1; $ary=$con->select("select id from links where id>='$start' order by id"); for($i=count($ary)-1;$i>=0;$i--){ $id=$ary[$i]['id']+1; $sql="update links set id='$id' where id='{$ary[$i]['id']}'"; $con->uid($sql); } $sql="insert into links (id,name,link) values ('$start','{$_POST['name']}','$link')"; break; } $con->uid($sql); } if(isset($_POST['edit_link'])){ $con=new connect; $con->uid("update links set name='{$_POST['name']}',link='{$_POST['link']}' where id='{$_POST['edit_link']}'"); } if(isset($_GET['del_link'])){ $con=new connect; $con->uid("delete from links where id='{$_GET['del_link']}'"); } if(isset($_GET['del_newsletter'])){ $con=new connect; $con->uid("delete from newsletter where id='{$_GET['del_newsletter']}'"); } if(isset($_POST['del_ads'])){ $con=new connect; $con->uid("delete from ads where id='{$_POST['del_ads']}'"); } if(isset($_GET['del_option'])){ $con=new connect; $con->uid("delete from result where id='{$_GET['del_option']}'"); $_POST['q']=$_GET['id']; $_POST['select_election']=''; } if(isset($_POST['edit_ads'])){ if(get_magic_quotes_gpc()){ $pic1=$_POST['pic1']; $pic2=$_POST['pic2']; $title=$_POST['title']; $body=$_POST['body']; $link=$_POST['link']; } else{ $pic1=addslashes($_POST['pic1']); $pic2=addslashes($_POST['pic2']); $title=addslashes($_POST['title']); $body=addslashes($_POST['body']); $link=addslashes($_POST['link']); } $con=new connect; $sql="update `ads` set title='$title',body='$body',link='$link',pic1='$pic1',pic2='$pic2' where id='".$_POST['edit_ads']."'"; $edit_ads=$con->uid($sql); } if(isset($_POST['del_election'])){ $con=new connect; $ary=$con->uid("delete from election where id='{$_POST['q']}'"); $ary=$con->uid("delete from result where eid='{$_POST['q']}'"); } if(isset($_POST['static'])){ //echo $_POST['content'].' = '.$_POST['page']; $con = new connect; $con->uid("update `static` set `content`='{$_POST['content']}',`keywords`='{$_POST['keywords']}',`description`='{$_POST['description']}' where `page`='{$_POST['type']}'"); } ?> پرده سینما | مديريت سايت

فرم ورود مديران

آدرس ايميل:
كلمه عبور:
num("select id from comment where chk='0'"); $contact=$con->num("select id from contact where chk='0'"); ?> select("select content from static where page='{$_GET['page']}'"); ?>
درباره ما تماس با ما درج آگهی

صفحه:

شرح:

کلمات کلیدی:

توضیحات:

گروههای اصلی عنوان تالارها ارسالهای کاربران کاربران
select("select * from user order by id desc"); ?>

کاربران

ردیف کاربر ایمیل ثبت نام تالارها ارسالها
 
num("select * from forum where userid='$id' and title<>'' and post=''"); return $num; } private function postcont($id){ $con=new connect; $num=$con->num("select * from forum where userid='$id' and title<>'' and post=''"); return $num; } private function forum_post(){ $con=new connect; if(isset($_GET['editpost_forum'])){ $ary=$con->select("select * from forum where id='{$_GET['editpost_forum']}'"); $forum=$con->select("select id,title from forum where title<>'' and post='' and main='' order by id"); $user=$con->select("select id,username from user"); ?>

ویرایش ارسال کاربران

ارسال:
تالار:
کاربر:
select("select * from forum where main='' and title='' and refid<>0 order by id desc"); ?>

ارسال کاربران

ردیف ارسال نویسنده
'.$ary[$i]['date']; ?>
 
select("select id,main,detail from forum where refid='0' order by id desc"); ?>

گروههای اصلی

ردیف نام گروه توضیح
 
نام گروه: توضیح:
select("select id,main,detail from forum where id='$id'"); ?>
نام گروه: توضیح:
select("select * from forum where id='{$_GET['edittitle_forum']}'"); $forum=$con->select("select id,main from forum where main<>'' and post='' and title='' order by id"); $user=$con->select("select id,username from user"); ?>

ویرایش عنوان تالارها

عنوان تالار:
گروه:
کاربر:
select("select * from forum where title<>'' order by id desc"); ?> >

عنوان تالارها

ردیف نام گروه نویسنده
 
num($sql); $url='pikrin.php?act=17&s='; list($row,$height,$pages)=paging($num,$step-1,100,$url); $sql="select * from statistic order by id limit $row,$height"; $ary=$con->select($sql); if($ary){?> =0;$i--){ ?>
رديفمرورگرآي پيتاريخساعت


اطلاعاتی جهت نمایش موجود نیست.
'; } } private function manage_newsletter(){ $con=new connect; $ary=$con->select("select * from newsletter order by id"); ?>

مدیریت خبرنامه

ردیف نام آدرس ایمیل





هیچ موردی در حال حاضر موجود نیست.





نام لینک: آدرس لینک:
select("select * from newsletter"); ?>

فرم ارسال خبرنامه

خبرنامه ارسال گردید.
متن خبرنامه:
گیرنده:
select("select * from ads where id='".$_GET['del_ads']."'"); ?>

حذف تبلیغات

 
 
 
حذف تبلیغات:
 
 
 
 
select("select * from ads where id='".$_GET['edit_ads']."'"); ?>

ويرايش تبلیغات

تصویر پیش نمایش:
تصویر اصلی:
عنوان:
متن:
لینک:
select("select * from ads"); ?>

مدیریت تبلیغات

ردیف عنوان لینک تعداد بازدید





هیچ تبلیغاتی در حال حاضر موجود نیست.





select("select * from links where id='".$_GET['edit_link']."'"); ?>

ويرايش لینکها

نام لینک:
آدرس لینک:
select("select * from newsletter where id='{$_GET['edit_newsletter']}'"); ?>

ويرايش خبرنامه

نام:
آدرس ایمیل:
select("select * from links order by id"); ?>

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

ردیف نام لینک آدرس لینک





هیچ لینکی در حال حاضر موجود نیست.





نام لینک: آدرس لینک:
موقعیت:

فرم طراحی تبلیغات

عکس صفحه اصلی:
عکس داخلی:
عنوان:
متن تبلیغات:
لینک
select("select q,type from election where id='{$_POST['q']}'"); if($type[0]['type']==1){ $ary=$con->select("select * from result where eid='{$_POST['q']}'"); ?>
ردیف تاریخ انتخاب اول انتخاب دوم انتخاب سوم انتخاب چهارم انتخاب پنجم انتخاب ششم انتخاب هفتم انتخاب هشتم انتخاب نهم انتخاب دهم
> > > > > > > > > > > > >

نتایج نظر سنجی:

کل شرکت کنندگان: num("select id from result where eid='{$_POST['q']}'"); ?> نفر
select("select r1,r2,r3,r4,r5,r6,r7,r8,r9,r10 from election where id='{$_POST['q']}'"); $count=0; for($i=0;$i<10;$i++) if($ary[0]['r'.($i+1)]!='') $count+=1; $sel=$con->select("select r1 from result where eid='{$_POST['q']}'"); for($i=0;$i گزینه '.$order[$i].': ('.$ary[0]['r'.($i+1)].') '.($round).'%'; } ?>
'.'
 
'.'








select("select * from election where id='{$_POST["q"]}'"); if($ary[0]['type']==1){ ?>

نظرسنجي

سوال:
عکس:
تعداد گزینه‌ها:

نظرسنجي

سوال:
عکس:
گزینه 1
گزینه 2
گزینه 3
گزینه 4
گزینه 5
گزینه 6
گزینه 7
گزینه 8
گزینه 9
گزینه 10
select("select * from election order by id desc"); ?>

مدیریت نظرسنجی



لطفا نظرسنجی مورد نظر خود را انتخاب نمائید:



select("select * from writer where id='".$_GET['e']."'"); ?>

ويرايش نويسندگان

 
 
 
ويرايش نويسنده:
 
 
 
 
select("select * from writer where id='".$_GET['d']."'"); ?>

حذف نويسندگان

 
 
 
حذف نويسنده:
 
 
 
 
select("select * from writer"); ?>

مديريت نويسندگان

رديفنام نويسندهويرايشحذف
ويرايشحذف
نويسنده جديد:
select("select * from comment where id='{$_GET['del_comment']}'"); if($ary){ ?>

حذف نظرات خوانندگان



شما در حال حذف ارسال زیر هستید:



حذف نظرات خوانندگان




يافت نشد.



select("select * from comment where id='{$_GET['show_comment']}'"); ?>

مشاهده نظرات خوانندگان

ارسال کننده:
متن پیام:
تاریخ:
select("select * from contact where id='{$_GET['show_contact']}'"); ?>

مشاهده نظرات خوانندگان

ارسال کننده:
ایمیل:
عنوان پیام:
متن پیام:
تاریخ:
select("select * from contact where id='{$_GET['del_contact']}'"); if($ary){ ?>

حذف تماسهای خوانندگان



شما در حال حذف تماس زیر هستید:



حذف تماسهای خوانندگان




يافت نشد.



num("select * from comment"); 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,"pikrin.php?act=8&s="); $sql="select * from comment order by id limit $row,$height"; $ary=$con->select($sql); if($ary) for($i=count($ary)-1;$i>=0;$i--){?>

مديريت پيامهاي كاربران

متنمقالهفرستندهبررسيمجازحذف
(مشاهده) '.$ary[$i]['date']; ?> نشده'; ?> نيست'; ?>
select("select title from article where id='$id'"); echo $ary[0]['title']; } private function contact(){ ?> num("select * from contact"); 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,"pikrin.php?act=7&s="); $sql="select * from contact order by id limit $row,$height"; $ary=$con->select($sql); if($ary) for($i=count($ary)-1;$i>=0;$i--){?>

مديريت تماسها

عنوانمتنفرستندهبررسيپاسخحذف
(مشاهده) '.$ary[$i]['date']; ?> نشده'; ?> نداده'; ?>

نظرسنجی




اطلاعات ارسالی دریافت شد.



نظرسنجي

سوال:
عکس:
تعداد گزینه‌ها:

نظرسنجی




اطلاعات ارسالی دریافت شد.



نظرسنجي

سوال:
عکس:
گزینه 1
گزینه 2
گزینه 3
گزینه 4
گزینه 5
گزینه 6
گزینه 7
گزینه 8
گزینه 9
گزینه 10
select("select * from article where id='".abs((int)$_GET['del'])."'"); if($ary){ ?>

تائيد حذف مقاله




شما در حال حذف اين مقاله هستيد. حذف مقاله قابل برگشت نيست.










تائيد حذف مقاله




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



راهنماي مديران سايت

1- چگونه مي‌توانم يك مقاله ارسال كنم؟
2- آلبوم به چه معنا است؟ آيا تعريف يك آلبوم جديد ضروري است؟
3- چگونه مي‌توانم عكسهايي از آلبومهاي مختلف را وارد يك مقاله كنم؟
4- عنوان مقاله، پيش نمايش، متن مقاله، طبقه بندي، نويسنده، اين اصطلاحات به چه معني هستند؟
5- چگونه مي‌توانم عكسي را كه وارد مقاله كرده‌ام و الان در حال نمايش است را تغيير دهم؟
6- چگونه مي‌توانم يك مقاله را تغيير دهم؟
7- آيا مي‌توانم بدون اينكه مقاله‌اي را حذف كنم از نمايش آن جلوگيري كنم؟
8- آيا با حذف مقاله، تصاوير داخل آن هم حذف مي‌شوند؟
 
1- چگونه مي‌توانم يك مقاله ارسال كنم؟

جهت ارسال مقاله، روي لينك "ارسال مقاله" كليك كنيد. فرم ارسال مقاله ظاهر مي‌شود. حال با تكميل اين فرم، و كليك روي دكمه "ارسال فرم" مقاله شما به سايت ارسال شده و در گروه مربوطه به نمايش درمي‌آيد. ابتداي صفحه


2- آلبوم به چه معنا است؟ آيا تعريف يك آلبوم جديد ضروري است؟

براي سادگي كار و دسته بندي تصاوير ارسالي شما به سايت، نياز است براي هر دسته عكس، يك آلبوم تعريف نمائيد. بدين ترتيب، در هر بار ارسال مقاله، فقط تصاويري كه مربوط به آن مقاله است و تحت نام يك آلبوم ارسال نموده‌ايد را باز خواهيد كرد.
البته فراموش نكنيد كه اينكار تنها براي راحتي كار و يافتن سريع تصاوير است. در هر حال شما مي‌توانيد براي يك مقاله، عكسهايي از آلبومهاي مختلف را انتخاب نمائيد.ابتداي صفحه

3- چگونه مي‌توانم عكسهايي از آلبومهاي مختلف را وارد يك مقاله كنم؟

روي گزينه ارسال مقاله كليك كنيد. سپس صفحه آلبومها را هم در صفحه‌اي جديد باز كنيد. هر جا كه تمايل به درج عكس داشتيد، در نوار ابزار گزينه "متن مقاله" روي گزينه image كليك كنيد. از صفحه آلبوم عكس مورد نظر خود را پيدا كرده و آدرس آنرا با انتخاب تركيب كليدي ctrl+c در كليپبرد ذخيره كنيد. اينك به صفحه "ارسال مقاله" بازگشته و در پنجره image properties (كه در نتيجه كليك روي گزينه image ظاهر مي‌شود) وارد كنيد.ابتداي صفحه

4- عنوان مقاله، پيش نمايش، طبقه بندي، اين اصطلاحات به چه معني هستند؟

هر مقاله يك عنوان دارد كه در سايت با اين عنوان شناخته مي‌شود. بهتر است اين عنوان با متن مقاله همخواني داشته باشد. پيش نمايش عكسي است كه در ليست مقالات به نمايش درمي‌آيد. لزومي ندارد عكس پيش نمايش در متن مقاله هم استفاده شده باشد. طبقه بندي به موضوع مقاله برمي‌گردد. ابتداي صفحه

5- چگونه مي‌توانم عكسي را كه وارد مقاله كرده‌ام و الان در حال نمايش است را تغيير دهم؟

يك راه اينست كه وارد صفحه "ايجاد و ويرايش آلبوم" شده، عكس مورد نظر را حذف كرده و عكس جديدي را ارسال نمائيد. ولي در اينصورت چون عكس جديد، داراي نام جديدي هم هست، بايد در متن مقاله هم عكس قبلي را حذف كرده و عكس جديد را وارد كنيد. ولي راه حل ساده‌تر اين است كه در صفحه "ايجاد و ويرايش آلبوم" روي گزينه "تعويض" كليك كرده و عكس جديدي را ارسال نمائيد. در اين حالت عكس جديد با نام عكس قديمي ذخيره مي‌شود و ديگر نيازي به ويرايش متن مقاله وجود ندارد.ابتداي صفحه

6- چگونه مي‌توانم يك مقاله را تغيير دهم؟

وارد صفحه "ويرايش مقالات" شده، مقاله مورد نظر را انتخاب كرده و تغييرات مد نظرات را انجام دهيد. در پايان روي گزينه "ارسال فرم" كليك كنيد.ابتداي صفحه

7- آيا مي‌توانم بدون اينكه مقاله‌اي را حذف كنم از نمايش آن جلوگيري كنم؟

وارد صفحه "ويرايش مقالات" شده و روي عبارت "مجاز" مربوط به مقاله مورد نظر كليك كنيد تا اين گزينه تبديل به "غير مجاز" شود. در اين حالت ديگر مقاله نمايش داده نمي‌شود. در صورتيكه مايل به نمايش مجدد اين مقاله بوديد روي عبارت "غير مجاز" مربوط به اين مقاله كليك كنيد.ابتداي صفحه

8- آيا با حذف مقاله، تصاوير داخل آن هم حذف مي‌شوند؟

خير. براي حذف تصاوير يك آلبوم، بايد آن آلبوم را حذف كنيد.ابتداي صفحه

select("select * from article where id='".abs((int)$_GET['ed_article'])."'"); if($ary){ ?>
select("select * from writer"); ?>

ويرايش مقاله

ويرايش مقاله با موفقيت انجام شد.
عنوان مقاله:
عكس پيشنمايش:
متن مقاله:
کلمات کلیدی:
توضیحات:
گروه مقاله:
نويسنده:
تاریخ:
   

ويرايش مقاله




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



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,50,"pikrin.php?act=4&s="); $sql="select * from article"; if(isset($_GET['c'])) $sql.=" where cat=".abs((int)$_GET['c']); $sql.=" order by id limit $row,$height"; $ary=$con->select($sql); if($ary){?>

مشاهده مقالات

=0;$i--){ ?>
مقاله مورد نظر حذف گرديد.
رديف نام مقاله گروه تاريخ ارسال بازديدها وضعيت حذف مقاله
حذف مقاله

مشاهده مقالات




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



select("select * from photo where tag in (select tag from album where id='$id') order by id desc"); if($ary){?>

مشاهده تصاوير





مشاهده تصاوير




تصويري يافت نشد.



num("select id from album"); 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,"pikrin.php?act=3&s="); $ary=$con->select("select * from album order by name limit $row,$height"); if($ary){ ?> =0;$i--){ ?>

آلبومهاي موجود

رديفنام آلبومتعداد تصاويرگالریتاريخ ارسال
بله'; else echo 'خیر'; ?>

آلبومهاي موجود




آلبومي يافت نشد.



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

تائيد حذف عكس جاري

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

تعويض عكس جاري

عكسي كه ارسال مي‌كنيد جايگزين عكس فوق مي شود:
num($sql)==1){ $ary=$con->select($sql);?>

ويرايش آلبوم

نام آلبوم:
num($sql)==1){ $ary=$con->select($sql);?>

حذف آلبوم

نام آلبوم:
آلبوم فوق همراه با كليه تصاوير آن در حال حذف مي‌باشد.
select($sql); ?>

[حذف]      [تعويض]

[حذف]      [تعويض]

[حذف]      [تعويض]

[حذف]      [تعويض]
افزودن عكس به اين آلبوم:

فرم ايجاد آلبوم جديد

انتخاب عكس:
نام آلبوم (ضروري):

فرم ايجاد آلبوم جديد

چه تعداد عكس مايل هستيد ارسال نمائيد؟
num($sql); list($row,$height,$pages)=paging($num,$step-1,40,"pikrin.php?act=2&s="); $sql="select * from album order by id limit $row,$height"; if($con->num($sql)){ $ary=$con->select($sql); ?> =0;$i--){ ?>
رديفنام آلبومتعداد تصاويرتاريخ
[ ويرايش نام آلبوم] [ حذف آلبوم ] [ مشاهده تصاوير]
select("select * from writer"); ?>

فرم ارسال مقاله

مقاله ارسالي دريافت گرديد.
عنوان مقاله:
پيش نمايش:
متن مقاله:
کلمات کلیدی:
توضیحات:
طبقه بندي:
نويسنده:
وضعیت:
num($sql); } private function select_page(){ ?>
'; $cats=array("","مباحث تئوريك","تاريخ سينما","سينماي كلاسيك","معبد خاطره‌ها","سينما و ادبيات","سينماي معاصر","دوبله فارسي","سينماي ايران","یادداشت سردبیر","فروش فیلم ایران","فروش فیلم جهان","کتاب سینمایی","نقد خوانندگان","خبر","تئاتر و تلویزیون"); $con=new connect(); switch($_GET['g']) { case '1': //1-20 20 maghale echo "

۲۰ مقاله برگزیده

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id<21 order by id"; $sel=$con->select($sql); for($i=0;$i<20;$i++){ echo '

'; } break; case '2': //31 talk 32-37 talk echo "

گفتگو

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id>30 and id<38 order by id"; $sel=$con->select($sql); for($i=0;$i<7;$i++){ echo '

'; } break; case '3': //41-50 ads echo "

تبلیغات

"; $sql="select id,title from ads order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>40 and id<51 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '4': //61-70 book echo "

کتاب سینمایی

"; $sql="select id,title,cat from article where cat='12' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>60 and id<71 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '5': //81-90 doble farsi echo "

دوبله فارسی

"; $sql="select id,title,cat from article where cat='7' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>80 and id<91 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '6': //101-110 cinema va adabiat echo "

سینما و ادبیات

"; $sql="select id,title,cat from article where cat='5' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>100 and id<111 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '7': //121-130 cinema kelasic echo "

طعم سینما

"; $sql="select id,title,cat from article where cat='3' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>120 and id<131 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '8': //141-150 gallery echo "

گالری

"; $sql="select id,name,gallery from album where gallery='1' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>140 and id<151 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '9': //161-170 cinema iran echo "

سینمای ایران

"; $sql="select id,title,cat from article where cat='8' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>160 and id<171 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '10': //181-200 important news echo "

مهمترین عناوین خبری

"; $sql="select id,title,cat from article where cat='14' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>180 and id<201 order by id"; $sel=$con->select($sql); for($i=0;$i<20;$i++){ echo '

'; } break; case '11': //211-216 mabade khatereha echo "

معبد خاطره‌ها

"; $sql="select id,title,cat from article where cat='4' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>210 and id<217 order by id"; $sel=$con->select($sql); for($i=0;$i<6;$i++){ echo '

'; } break; case '12': //221-230 cinema moaser echo "

سینمای معاصر

"; $sql="select id,title,cat from article where cat='6' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>220 and id<231 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '13': //241-250 mabahese teoric echo "

مباحث تئوریک

"; $sql="select id,title,cat from article where cat='1' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>240 and id<251 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; case '14': //261 maghale bartar echo "

مقاله اصلی

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id=261"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '15': //266-267 maghalate farei echo "

مقالات فرعی

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id>265 and id<268"; $sel=$con->select($sql); for($i=0;$i<2;$i++){ echo '

'; } break; case '16': //271-274 4 maghale echo "

چهار مقاله بالای سایت

از راست به چپ
"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id>270 and id<275 order by id"; $sel=$con->select($sql); for($i=0;$i<4;$i++){ echo '

'; } break; case '17': //281 zire zarrebin echo "

زیر ذره‌بین

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id=281"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '18': //291 tarikhe cinema echo "

تاریخ سینما

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id=291"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '19': //301 negahe hafteh echo "

نگاه هفته

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id=301"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '20': //311 yaddashte sardabir echo "

یادداشت سردبیر

"; $sql="select id,title,cat from article order by cat,id"; $article=$con->select($sql); $sql="select * from selectpage where id=311"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '21': //321 election echo "

نظرسنجی

"; $sql="select id,q from election"; $article=$con->select($sql); $sql="select * from selectpage where id=321"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '22': //331 amare forosh echo "

آخرین آمار فروش

"; $sql="select id,title,cat from article where cat>9 and cat<12 order by id"; $article=$con->select($sql); $sql="select * from selectpage where id=331"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '23': //341-343 teatr va television echo "

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

"; $sql="select id,title,cat from article where cat='15' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>340 and id<344 order by id"; $sel=$con->select($sql); for($i=0;$i<3;$i++){ echo '

'; } break; case '24': //351 naqd khanandegan echo "

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

"; $sql="select id,title,cat from article where cat='13' order by id"; $article=$con->select($sql); $sql="select * from selectpage where id=351"; $sel=$con->select($sql); for($i=0;$i<1;$i++){ echo '

'; } break; case '25': //361 amarhaye sayt $sql="select * from selectpage where id=361"; $sel=$con->select($sql); echo "

آمارهای سایت

"; echo '

'; break; case '26': //371 photo link $sql="select * from photolink order by id"; $ary=$con->select($sql); echo "

عکسهای لینکدار (عنوان - فایل - لینک)

"; echo "
۱۰ لینک سمت راست"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
۱۰ لینک وسط"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
۱۰ لینک سمت چپ"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
منتخب مقالات"; echo ''; echo ''; echo ''; echo '

'; echo "
گفتگو"; echo ''; echo ''; echo ''; echo '

'; echo "
تاریخ سینما"; echo ''; echo ''; echo ''; echo '

'; echo "
دوبله فارسی"; echo ''; echo ''; echo ''; echo '

'; echo "
کتاب سینمایی"; echo ''; echo ''; echo ''; echo '

'; echo "
طعم سینما"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
تئاتر و تلویزیون"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
گفتگو"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
سینمای ایران"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
پربیننده ترین مقالات"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo "
مهمترین عناوین خبری"; echo ''; echo ''; echo ''; echo '

'; echo "
گالری"; echo ''; echo ''; echo ''; echo '

'; echo "
نگاه هفته"; echo ''; echo ''; echo ''; echo '

'; echo "
آمار فروش فیلم"; echo ''; echo ''; echo ''; echo '

'; echo "
سینما و ادبیات"; echo ''; echo ''; echo ''; echo '

'; echo "
معبد خاطره‌ها"; echo ''; echo ''; echo ''; echo '

'; echo "
سینمای معاصر"; echo ''; echo ''; echo ''; echo '

'; echo "
مباحث تئوریک"; echo ''; echo ''; echo ''; echo '

'; echo "
عضویت در خبرنامه"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo '

'; echo '

'; break; case '27': //371 most visited echo "

پربیننده‌ترین‌های هفته اخیر

"; $sql="select id,title,cat from article order by id"; $article=$con->select($sql); $sql="select * from selectpage where id>370 and id<381 order by id"; $sel=$con->select($sql); for($i=0;$i<10;$i++){ echo '

'; } break; } echo ''; } ?>
select("select * from selection"); ?>
ده مقاله برگزیده 1-10 مقاله برتر نگاه هفته

مقالات فرعی

تاریخ سینما
پر بيننده‌ترين مقالات
چهار مقاله برگزیده بالای صفحه
زیر ذره بین یادداشت سردبیر نظرسنجی
گفتگو 1 گفتگو 2 گفتگو 3
تبلیغات
آخرین آمار فروش فیلم سینما و ادبیات
دوبله فارسی
کتاب سینمایی
معبد خاطره‌ها
سینمای ایران
طعم سینما
سینمای معاصر
مهمترین عناوین خبری
آمارهای سایت
نقد خوانندگان مباحث تئوریک
تئاتر و تلویزیون
تبلیغات شماره 10
گالری
ده مقاله برگزیده 11-20