2011-06-16 86 views
0

我想製作一個每秒刷新的android頁面。所有的東西都運行良好,但是我在this頁面上遇到的問題是,當你點擊保留按鈕,然後整個div下來並留下一個小空間,但在下一次刷新之後它就會變好。我曾嘗試無格,但它不是在這裏工作是代碼div下來,同時刷新頁面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<?php 
Header('Refresh:2;url=http://medical.gofreeserve.com/and/checkm.php'); 
?> 
<head> 

<style type="text/css"> 
<!-- 
.style2 {color: #FFFFFF} 
--> 
</style> 
</head> 

<body bgcolor="#000000"> 

<?php 

include("../common/connection.php"); 

?> 



<?php 


if(isset($_GET['reserve'])) 
{ 
echo $sql = "UPDATE newsevents SET booking ='1' WHERE news_id='$_GET[val]'"; 
$query = mysql_query($sql) or die(mysql_error()); 
} 







$new_query=mysql_query("select * from newsevents where booking=0") or die(mysql_error()); 
while($row=mysql_fetch_array($new_query)) 
{ 
$id=$row['news_id']; 
$date=$row['date']; 
$news_text=$row['text']; 



?> 



<div style="border-bottom:2px solid #FFFFFF" > 
<form name="fm1" action="checkm.php" method="get"> 
<table width="95%"> 



<tr> 
<td width="60%" height="50" ><span class="style2"><?php echo $date ?></span></td> 
<td width="40%"><span class="style2"><?php echo $news_text ?></span></td> 
<td width="40%"><span class="style2"><input type="hidden" name="val" value="<?php echo $id?>"/></span></td> 
<td width="30%"><input type="submit" name="reserve" id="reserve" value="reserve" /></td> 

</tr> 


</table> 

</form> 
</div> 







<?php }?> 



</body> 
</html> 
+0

對不起隊友,帳戶資源限制違規! – genesis 2011-06-16 14:23:34

+0

@genesis抱歉,請現在看看 – user667340 2011-06-16 14:25:22

回答

2

您正在運行的SQL查詢,這是推下來div時呼應的SQL語句。只需使用以下代碼:

if(isset($_GET['reserve'])) 
{ 
    $sql = "UPDATE newsevents SET booking ='1' WHERE news_id='".$_GET['val']."'"; 
    $query = mysql_query($sql) or die(mysql_error()); 
}