Search results

  1. K

    PHP code problem can anyone help?

    1. Find this line: $strName = "Simon Stobart"; And replace with this two lines: $strName = $_POST['strName']; $strCount = strlen($strName); 2. Find this line (placed twice: on line 4 and 8): for ($intLetter=0;$intLetter<13;$intLetter++… And replace each with this: for ($intLetter = 0...
  2. K

    basic HTML java script problem?

    Change this line: <SCRIPT lANGAUGE= "JavaScript"> To this one: <script language= "javascript"> And this one: </SCRIPT> To this: </script> And I suggest not to use CAPS when you write html code. Have fun!
  3. K

    basic HTML java script problem?

    Change this line: <SCRIPT lANGAUGE= "JavaScript"> To this one: <script language= "javascript"> And this one: </SCRIPT> To this: </script> And I suggest not to use CAPS when you write html code. Have fun!
Back
Top