01.
02.
03.
$sqlCheckStatus
=
"select * from asmt_file_upload where FileName = '$result_pull_data[FileName]' "
;
04.
$queryCheckStatus
= mysql_query(
$sqlCheckStatus
);
05.
$resultCheck
= mysql_fetch_array(
$queryCheckStatus
);
06.
if
(
$resultCheck
[
'status'
] == 0){
07.
echo
'<a href="index.php" onclick= confirm( "Do you want to Comfirm Order ?")><img src="IMG\question.jpg" border="0" width="35" height="35"></a>'
;
08.
09.
}
else
if
(
$resultCheck
[
'Status'
] == 1){
10.
echo
'<img src="IMG\green.png" border="0" width="35" height="35">'
;
11.
}
else
{
12.
echo
'<img src="IMG\rball.jpg" border="0" width="35" height="35">'
;
13.
}