Hyperlink for each record
- by shantanuo
I need a link for each depotname that will bring up a child window with the details of the last 10 backup status.
while($data=mysql_fetch_array($res))
{
if(is_null($depot_array) || !in_array($data['depotname'],$depot_array ))
{
$depot_array[$r]=$data['depotname'];
if($data['SCP_status'] <> 'success')
{
echo "<tr id='fail'>";
The results of the following query should be displayed in a child window.
select * from backup_log where depotname = $data['depotname']