| Name |
Type |
Language |
Country |
';
}
if(mysql_num_rows($data)>0){
while($row = mysql_fetch_assoc($data))
{ //Get Country details
$country=mysql_fetch_assoc(mysql_query("select name_country from country where id_country=".$row['country']));
$get_type=mysql_fetch_assoc(mysql_query("select name_publication_type_en from publication_type where id_publication_type=".$row['id_publication_type']));
$edit_link = '
';
$del_link = '
';
if($row['active']=='1')
{
$img = "images/greencircle.png";
}
else
{
$img = "images/redcircle.png";
}
if($row['active']=='1')
{
$status = "Active";
}
else
{
$status = "Inactive";
}
if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "super_admin")
{
$str .= '
'.$row['name_publication_en'].' |
'.$get_type['name_publication_type_en'].' |
'.$row['language'].' |
'.$country['name_country'].' |
'.$edit_link.'|'.$del_link.' |
';
}
else
if($_SESSION['moms_uid'] == '1' && $_SESSION['moms_type'] == "admin")
{
$str .= '
'.$row['name_publication_en'].' |
'.$get_type['name_publication_type_en'].' |
'.$row['language'].' |
'.$country['name_country'].' |
'.$del_link.' |
';
}
else
if($_SESSION['moms_uid'] == '1')
{
$str .= '
'.$row['name_publication_en'].' |
'.$get_type['name_publication_type_en'].' |
'.$row['language'].' |
'.$country['name_country'].' |
'.$del_link.' |
';
}
else
if($_SESSION['moms_type'] == "super_admin")
{
$str .= '
'.$row['name_publication_en'].' |
'.$get_type['name_publication_type_en'].' |
'.$row['language'].' |
'.$country['name_country'].' |
'.$edit_link.' |
';
}
else
if($_SESSION['moms_type'] == "admin")
{
$str .= '
'.$row['name_publication_en'].' |
'.$get_type['name_publication_type_en'].' |
'.$row['language'].' |
'.$country['name_country'].' |
';
}
?>
No Record Found | ';
}
$str .= '