我正在使用PHP中的功能,其中有很多用戶可以看到的照片,現在用戶可以選擇一些照片並單擊名爲proceed的按鈕。顯示所選圖像
問題: -
我的問題是,繼續點擊按鈕後,下一個屏幕選擇的照片應該被看作選定的照片上。
我該如何解決這個問題?如果你給我一些代碼的例子,這將會很有幫助。
這裏是代碼我使用的選擇圖像,
$instagram_url = 'https://api.instagram.com/v1/users/self/media/recent?access_token=297947523.32f60ec&count=-1';
$instagram_json = file_get_contents($instagram_url);
$instagram_array = json_decode($instagram_json,true);
if(!empty($instagram_array)){
foreach($instagram_array['data'] as $image){
echo'<input id="imageId" type="image" src="'.$image['images']['low_resolution']['url'].'" onclick="mark(this)" hspace="20" vspace="20"/>';
}
我想用數組做。
是你所得到的IMGS被存儲在數據庫中? – Laith
@Laith,Nope,它會有幫助,如果它與數組完成,我也加入這個問題。 –
編輯問題@Laith –