Thread: new to talkphp
View Single Post
Old 04-27-2009, 04:10 AM   #5 (permalink)
jcorradino
The Contributor
 
jcorradino's Avatar
 
Join Date: Sep 2008
Posts: 36
Thanks: 2
jcorradino is on a distinguished road
Default

Code:
<?PHP
  $welcome1 = "hello";
  $welcome2 = ", ";
  $welcome3 = "and ";
  $welcome4 = "welcome! ";
  $welcome5 = "Please ";
  $welcome6 = "feel ";
  $welcome7 = "free ";
  $welcome8 = "to ";
  $welcome9 = "ask ";
  $welcome10 = "us ";
  $welcome11 = "if ";
  $welcome12 = "you ";
  $welcome13 = "need ";
  $welcome14 = "any ";
  $welcome15 = "help!";
  $counter = 1;
  while (true) {
    if (isset(${'welcome'.$counter})) {
      echo ${'welcome'.$counter};
      $counter++;
    } else {return;}
  }
?>
As my message says
__________________
Jason Corradino
Applications Developer, Interactive Support - Tribune Technology
J2EE Development, Script Tinkering - Develop, Support, and Maintain Tribune websites.
jcorradino is offline  
Reply With Quote
The Following User Says Thank You to jcorradino For This Useful Post:
nickyoung (04-28-2009)