View file public_html/vipadz/smsall.php

File size: 531B
<?php
//coded by arshad
//email: arshadwap.com@gmail.com

include '../db.php';
include '../functions.php';

headtag("$SiteName - SMS All Users");

if($adminlog==1){

echo '<div class="title">SMS All Users</div>';

$rs = mysql_query('SELECT verimobile from userdata WHERE status="ACTIVE" AND mobverify="2"');

while($no = mysql_fetch_assoc($rs))
{

	$phone= $no["verimobile"];
echo ''.$phone.'<br/>';
}
 

echo '<a href="index.php"><div class="ua">Home</div></a>';
include '../foot.php';
}
else {header('Location:login.php');}


?>