這個腳本起作用,它會加載到我的圖片中。圖片加載時間延遲
我想要在10秒後載入新圖片,當我嘗試這個時,它不工作對我做錯了什麼有什麼建議嗎?
<?php header("Refresh: 5; URL=mytestfile.php"); ?>
<div style="width: 964px;">
<div style="float: left; width: 240px;">
<?php $mybanners[1] = '<a href="/chiropractor/"><img src="banners/chiropractor.jpg"></a>';
$mybanners[2] = '<a href="/chiropodist/"><img src="banners/chiropody.jpg"></a>';
$mybanners[3] = '<a href="/fitness-instructor/"><img src="banners/fitness ball.jpg"></a>';
$mybanners[4] = '<a href="/dietician/"><img src="banners/Dietician.jpg"></a>';
$mybanners[5] = '<a href="/alexander-technique/"><img src="banners/Alexander technique.jpg"></a>';
$id = rand(1,5);
echo $mybanners[$id];
// this is the section I tried to control the delay
$mybanners = 0;
for($i=0; $i<10000; $i++){
if($i=='10000'){
$mybanners++;
$i = 0;
}
if($mybanners=='10'){
$mybanners=0;
}
}?>
您好Riccardo,我試圖實現這一點,而不使用JavaScript,沒有頭刷新,如果這是可能的只是使用PHP,我現在已經在那裏刷新標題。當我測試這個時,那個分鐘的數字是一個隨機數。 如果我取出標題刷新和時間元素,那麼這個工程,但我必須重新加載頁面每次更改圖像。 任何意見在這裏非常感謝。 –
你不能用PHP做到這一點。 – Damien
嗨基思,我的意思是我的答案是,你只需從PHP寫入所有的url到javascript數組中:我編輯了一個代碼示例的消息 –