Jump to content

2 Questions


rustyofco

Recommended Posts

1. how do I say "if this thing is equal to ANY OF THESE OTHER THINGS"

And these other things are dynamic, and there can be a different quantity of these other things.

2. Can you put a while funtion inside another while function? I tried it and it didn't seem to work... How can it work?
Link to comment
Share on other sites

1)  Yes you can.  The method for doing so depends on what these many other things are and how your program or database is storing them.

2)  You can do that also.
[code]<?php
$outer = 1;
while($outer< 10){
  $inner = 1;
  while($inner< 10){
    echo "$inner * $outer = " . $inner++ * $outer . "<br/>";
  }
  $outer++;
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.