login  Naam:   Wachtwoord: 
Registreer je!
 Forum

De code drukt niks af

Offline kasper90 - 20/01/2006 08:10 (laatste wijziging 20/01/2006 08:36)
Avatar van kasper90Nieuw lid Alleen het begin doet het, als de naam te lang is. Maar daarna drukt die niks af:S
  1. <?php
  2. ?>
  3. <html>
  4. <head>
  5. <title>Love Calculator</title>
  6. <STYLE TYPE="text/css">
  7. <!--
  8. BODY, P {color: black; font-family: verdana; font-size: 10 pt}
  9. H1 {color: black; font-family: arial; font-size: 12 pt}
  10. -->
  11. </STYLE>
  12. </head>
  13. <body>
  14. <?php
  15. $u=$_GET['u'];
  16. $other=$_GET['other'];
  17. $u_1=strlen($u);
  18. $o_1=strlen($other);
  19.  
  20. if ($u_1 > 8)
  21. {
  22. print( "Wat is dat nou weer voor naam?" );
  23. }
  24. if ($o_1 > 8)
  25. {
  26. print( "Wat is dat nou weer voor naam?" );
  27. }
  28. $u = trim($u);
  29. $other = trim($other);
  30. if ($other=="kasper")
  31. print( "Don't use my name!" );
  32. if ($u=="kasper")
  33. print( "Zo heet je helemaal niet." );
  34.  
  35. if ($u_1/$o_1 < 0,5)
  36. $match="Zou je wel willen hè $u, wie wilt niet met $other neuken?" ;
  37. elseif ($u="daniel" or $u="daniël")
  38. $match="Dit is een alleen hetero calculator. Jammer voor je, $u.";
  39. elseif ($u_1/$o_1 < 1)
  40. {
  41. if (isset(!$_POST['a']))
  42. {
  43. ?>
  44. <form method="GET" action="love.php>
  45. <p>Wil je met haar:</p>
  46. <input type="radio" name="c" value="g" /> ...<br>
  47. <input type="radio" name="c" value="h" /> ...<br>
  48. <input type="radio" name="c" value="i" /> ...<br>
  49. <input type="radio" name="c" value="j" /> ..<br>
  50. <input type="radio" name="c" value="k" /> ...<br>
  51. </form>
  52. <?php
  53. }
  54. else
  55. {
  56. $c=$_GET['c'];
  57. if ($c=="g")
  58. print( "...." );
  59. elseif ($c=="h")
  60. print("...");
  61. elseif ($c=="i")
  62. print ("...");
  63. elseif ($c=="j")
  64. print( "...." );
  65. elseif ($s=="k")
  66. print( " ..." );
  67.  
  68. }
  69. }
  70. print( "$match" );
  71.  
  72. ?>
  73. </body>
  74. </html>

3 antwoorden

Gesponsorde links
Offline MechaVore - 20/01/2006 08:56
Avatar van MechaVore Gouden medaille

PHP gevorderde
if ($other=="kasper")
print( "Don't use my name!" );
exit;
if ($u=="kasper")
print( "Zo heet je helemaal niet." );
exit;

zet daar is haakjes om..
Offline kasper90 - 20/01/2006 16:17 (laatste wijziging 20/01/2006 16:18)
Avatar van kasper90 Nieuw lid Volgens mij klopte er zowiezo niks van de code, ik probeer nu een beetje stap voor stap te werken. Weet iemand wat er bij regel 34 enzo in de buurt fout is?

  1. <?php
  2. ?>
  3. <html>
  4. <head>
  5. <title>Love Calculator</title>
  6. <STYLE TYPE="text/css">
  7. <!--
  8. BODY, P {color: black; font-family: verdana; font-size: 10 pt}
  9. H1 {color: black; font-family: arial; font-size: 12 pt}
  10. -->
  11. </STYLE>
  12. </head>
  13. <body>
  14. <?php
  15. $u=$_GET['u'];
  16. $other=$_GET['other'];
  17. $u_1=strlen($u);
  18. $o_1=strlen($other);
  19.  
  20. if ($u_1 > 8)
  21. {
  22. print( "Wat is dat nou weer voor naam?" );
  23. }
  24. if ($o_1 > 8)
  25. {
  26. print( "Wat is dat nou weer voor naam?" );
  27. }
  28. $u = trim($u);
  29. $other = trim($other);
  30. if (strpos ($u, 'kasper') == true)
  31. {
  32. print( "Zo heet je helemaal niet." );
  33. //Als er bij de naam iets van mijn naam staat, moet hij dit weergeven, maar dat gebeurd niet....
  34. }
  35. ?>
  36. </body>
  37. </html>
Offline delta_004 - 20/01/2006 16:32 (laatste wijziging 20/01/2006 16:33)
Avatar van delta_004 Onbekend haal == true weg
In die functie zit al een true en false
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.201s