Jump to content

2 Questions


rustyofco

Recommended Posts

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
https://forums.phpfreaks.com/topic/25976-2-questions/#findComment-118649
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.