Do a while loop once?

This is a discussion on "Do a while loop once?" within the PHP Forum section. This forum, and the thread "Do a while loop once? are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 15th, 2008, 10:05
Jack Franklin's Avatar
Resources Administrator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,268
Blog Entries: 7
Thanks: 10
Thanked 4 Times in 4 Posts
Do a while loop once?

I've been working on a simple Image Rotator:
PHP: Select all

$randno rand(05);
$image_a '1.jpg';
$alt_a 'Test';
while (
$image_a !='' && $alt_a !='') {
if (
$randno == 1) {
echo 
'<img src="' $image_a '" alt="' $alt_a '">';
}

But the problem is that, if the random number is 1, it will display the image over and over and over, I only want it to display once.
Last Blog Entry: My Latest Project - Grilling Gurus... (Jun 11th, 2008)

Last edited by Jack Franklin; Feb 15th, 2008 at 10:10.
Reply With Quote

  #2 (permalink)  
Old Feb 15th, 2008, 10:16
SuperMember

SuperMember
Join Date: Apr 2007
Location: Sydney
Posts: 154
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Do a while loop once?

I'm probably missing something.. but why use the while loop if you only want it to display once? and whats supposed to happen if the number is 2, 3, 4 or 5?
Reply With Quote
  #3 (permalink)  
Old Feb 15th, 2008, 11:07
Jack Franklin's Avatar
Resources Administrator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,268
Blog Entries: 7
Thanks: 10
Thanked 4 Times in 4 Posts
Re: Do a while loop once?

I've only just started

Actually, TBH I've cocked up the code, so forget this one !
Last Blog Entry: My Latest Project - Grilling Gurus... (Jun 11th, 2008)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
The Loop (Again) Blake121 Free Web Site Critique 16 Sep 7th, 2007 13:57
The Loop V2 Blake121 Free Web Site Critique 8 May 15th, 2007 09:37
The Loop Blake121 Free Web Site Critique 5 May 1st, 2007 14:25
Loop??? tazek0 Classic ASP 0 Jan 27th, 2006 07:38
mr mr sound loop master_phat Flash & Multimedia Forum 2 May 13th, 2005 12:37


All times are GMT. The time now is 07:17.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43