mraza Posted November 25, 2009 Share Posted November 25, 2009 hi i have 2 divs in my page: <div id="one"> <a href="1.html"><img src="img.gif"></a> <p>First paragraph</p> </div> <div id="two"> <a href="2.html"><img src="img2.gif"></a> <p>Second paragrapht</p> </div> Now what i want is whenever a page refresh or reload it will show the other image or paragraph in that div. like if i refresh it becomes like this: <div id="one"> <a href="3.html"><img src="img3.gif"></a> <p>3rd paragraph</p> </div> <div id="two"> <a href="4.html"><img src="img4.gif"></a> <p>4th paragrapht</p> </div> please any help how can i accomplish that thanks. Link to comment https://forums.phpfreaks.com/topic/182916-random-div-on-refresh/ Share on other sites More sharing options...
vinpkl Posted November 25, 2009 Share Posted November 25, 2009 like in your example you say after #1 and #2 div there should show next #3 and #4 div. when you will call randomly then it will not be shown serial wise like you said. random function will show the result randomly which ever number may come. http://php.net/manual/en/function.rand.php vineet Link to comment https://forums.phpfreaks.com/topic/182916-random-div-on-refresh/#findComment-965436 Share on other sites More sharing options...
mraza Posted November 25, 2009 Author Share Posted November 25, 2009 thx vineet that does not matter if it display in serial, what i want is just when page reload it change that image and paragraph, like i have 10 images and paragph whenever page loads it change that image and paragraph. plz can you show me a sample code, thanks Link to comment https://forums.phpfreaks.com/topic/182916-random-div-on-refresh/#findComment-965443 Share on other sites More sharing options...
vinpkl Posted November 25, 2009 Share Posted November 25, 2009 something like this $query = "SELECT * FROM tablename ORDER BY RAND() LIMIT 2"; rest you see the below link for ref' http://php.net/manual/en/function.rand.php Link to comment https://forums.phpfreaks.com/topic/182916-random-div-on-refresh/#findComment-965446 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.