Can anyone tell me please why the alert(you have a callback) wont fire??
Code:
<?php
include("AgentLockout.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Agent-Homepage</title>
<link href="http://192.168.10.157:1234/iFixo_CRM/CSS/style_legend.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
function ValidateOnDelete()
{
var ret = confirm("Are you sure you want to delete the callback?");
if (ret == true)
{
event.returnValue = true;
}
else
{
event.returnValue = false;
}
}
</script>
</head>
<body bgcolor="#1BD6E0">
<table border="0" cellpadding="1" cellspacing="1" width="100%" >
<tr>
<td colspan="3" style="width:100%; height:5pt;"></td>
</tr>
<tr>
<td style="width:15%;"></td>
<td style="width:70%;">
<table border="1" cellpadding="1" cellspacing="1" width="90%" bgcolor="#FFFFFF">
<tr bgcolor="#9E9598">
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/Agent_Homepage.php">Home</a>
</td>
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/Create_Case.php">Create Case</a>
</td>
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/Create_Callback.php">Create Callback</a>
</td>
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/View_Callback.php">View Callback</a>
</td>
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/Agent_Change_Password.php">Change Password</a>
</td>
<td>
<a href="http://192.168.10.157:1234/iFixo_CRM/Agent_Logout.php">Logout</a>
</td>
</tr>
<tr>
<td colspan="6" style="width:100%;">
<table width="100%">
<tr>
<td align="right" valign="top" width="28%">Agent Name : </td>
<td align="right" valign="top" width="2%"></td>
<td align="left" valign="top" width="70%"><?php echo $agent_name; ?></td>
</tr>
<tr>
<td colspan="3" width="100%">
<table border="0" cellspacing="1" cellpadding="1" width="100%" >
<tr>
<td align="right" valign="top" width="15%" >
<div class="foo" style="background-color:#FFFFFF;"></div>
</td>
<td align="left" valign="top" width="30%">Existing Customer</td>
<td align="center" valign="top" width="10%"></td>
<td align="right" valign="top" width="15%">
<div class="foo" style="background-color:#F2CBC9;"></div>
</td>
<td align="left" valign="top" width="30%">Prospect Customer</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="3" width="100%">
<table border="1" cellspacing="1" cellpadding="1" width="100%" >
<tr bgcolor="#9E9598">
<td align="center" valign="top" width="20%">Customer Name </td>
<td align="center" valign="top" width="20%">Callback Date </td>
<td align="center" valign="top" width="20%">Callback Time </td>
<td align="center" valign="top" width="20%">Contact Number </td>
<td align="center" valign="top" width="10%">Edit </td>
<td align="center" valign="top" width="10%">Delete </td>
</tr>
<?php
include("config.php");
date_default_timezone_set('Asia/kolkata');
$sql = "Select * from callback where userid='$agent_id'";
$result = mysql_query($sql);
while($res = mysql_fetch_array($result))
{
if($res[6] == date("h:i:s"))
{
echo "<script>alert(\"you have a callback\");</script>";
}
if($res[7] == '0')
{
?>
<tr>
<td align="center" valign="top" width="20%"><?php echo $res[4]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[5]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[6]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[9]; ?></td>
<td align="center" valign="top" width="10%"><a href="editcallback.php?id=<?= $res[0];?>">edit</a></td>
<td align="center" valign="top" width="10%"><a href="deletecallback.php?id=<?=$res[0];?>" onclick="ValidateOnDelete()">delete</a></td>
</tr>
<?php }
else
{
?>
<tr bgcolor="#F2CBC9">
<td align="center" valign="top" width="20%"><?php echo $res[4]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[5]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[6]; ?></td>
<td align="center" valign="top" width="20%"><?php echo $res[9]; ?></td>
<td align="center" valign="top" width="10%"><a href="editcallback.php?id=<?= $res[0];?>">edit</a></td>
<td align="center" valign="top" width="10%"><a href="deletecallback.php?id=<?=$res[0];?>" onclick="ValidateOnDelete()">delete</a></td>
</tr>
<?php
}
}
?>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td style="width:15%;"></td>
</tr>
</table>
</body>
</html>
yeah i was actually asking how can i use setinterval to refresh time automatically??
Quote:
Originally Posted by
traq
With what? You haven't shown us any code involving
setInterval. Are you asking
how to use setInterval?
Also, have you solved your earlier problem? You don't appear to have changed anything substantial in the code you posted. Was it simply not the correct time of day to work?
You can use an online service like
jsfiddle or
codepen.
HTML Code:
<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>
<script>
var myVar=setInterval(function(){myTimer()},1000);
function myTimer()
{
var d=new Date();
var t=d.toLocaleTimeString();
document.getElementById("demo").innerHTML=t;
}
</script>
</body>
</html>
this mytimer() shows my system time..how can i now compare it to my $res[6]??
when they both are equal they will display a popup if not they wont do nything
yes i do need this piece of code..so will be glad if nyone can help me with this