ISN (International Social Networking Services - Interactive Apps and Websites)



ID Generate - PHP Script


 <HTML>
  <HEAD>
  <TITLE>Displaying Login ID Options</TITLE>
  </HEAD>
  <BODY>
  <Hl><CENTER>Generating Login IDs for Dave</CENTER></Hl>
  <?php
  $loginfo = array (
             FirstName => "Joe",
             LastName => "Howrod",
             Sex => "Male",
             Location => "Arizona",
             Age => "24",
             MusicChoice => "Pop",
             Hobby => "Dance",
             Occupation => "Author");

  echo "<H3>The information entered by JOe:<BR></H3>"
  foreach ($loginfo as $key => $val) {
     echo "<B>$key</B> => $val<BR>";
  }
  echo "<BR> ";
  echo "<H3>The login options are:<BR></H3>";

  $loginone = array_slice ($loginfo, 02);
  $logintwo = array_slice ($loginfo, 32);
  $loginthree = array_slice ($loginfo, 52);
  $loginfour = array_slice ($loginfo, 62);
  $loginfive = array_merge ($loginfour, "2001");

  echo "The first login option:<BR>";
  foreach ($loginone as $optionone) {
      echo "<B>$optionone</B>";
  }
  echo "<BR>";

  echo "The second login option:<BR>";
  foreach ($loginone as $optiontwo) {
      echo "<B>$optiontwo</B>";
  }
  echo "<BR>";

  echo "The third login option:<BR>";
  foreach ($loginthree as $optionthree) {
      echo "<B>$optionthree</B>";
  }
  echo "<BR>";
  
  echo "The fourth login option:<BR>";
  foreach ($loginfour as $optionfour) {
      echo "<B>$optionfour</B>";
  }

  echo "<BR>";
  echo "The fifth login option:<BR>";
  foreach ($loginfive as $optionfive) {
      echo "<B>$optionfive</B>";
  }
  echo "<BR>";
  ?>
  </BODY>
  </HTML>
           

By continuing to use this site, you agree to the use of cookies to personalize content and advertisements, to provide social media functionality, to analyze our traffic using Google services like Analytics and Adsense.

Google Adsense and its partners may use your data for advertising personalization and cookies may be used for personalized and non-personalized advertising. How does Google use my data?
Please use the following button to see the list of Google partners as well as all the details regarding cookies.
See detailsI Accept
These cookies are mandatory for the operation of isn-services.com, if you do not accept them please quit this site.
You have the right to refuse cookies and leave the site or to change the parameters.