Recent content by lord unforgiven

  1. L

    what is the html code?

    There is a html code that allow's you to print the code on the page instead of running it? i cannot remember it. can you please tell me
  2. L

    how do i put a forward slash '/ ' into quotations using PHP?

    im trying to make a very simple tool using PHP to translate the letters numbers and symbols found on a keyboard into binary code. I was just starting when i found this problem. }else if{($post == "\"){ echo 'the binary code of "\" = , the hex code ='; }
  3. L

    am having trouble with a PHP if statement?

    i have made a questioner in PHP for an ipt assignment. I have gone the next step and put all the forms and handles in the one page with the index page. I have the choices of which quiz set up with a radio button linked to an if statement. The problem is i have put in an if statement to help see...
  4. L

    Cannot get the PHP code to work?

    <html> <body> <input type="radio" name="display" value="c"/> display <input type="radio" name="display" value="a"/> display <input type="radio" name="display" value="d"/> display <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="submit" value="Submit"...
  5. L

    Cannot get the PHP code to work?

    <html> <body> <input type="radio" name="display" value="c"/> display <input type="radio" name="display" value="a"/> display <input type="radio" name="display" value="d"/> display <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <input type="submit" value="Submit"...
  6. L

    PHP Help, trying to get a whole php code in one if statment but isnt working properly?

    i have a radio button in html and i want the different php scripts to be displayed depending on what radio button is chosen like <html> <body> <input type="radio" name="radio1" value="php1/> php1 <input type="radio" name="radio1" value="php2/> php2 <?php $radio1 = ($_POST["radio1"]); if...
  7. L

    for IPT i have to make a quiz in PHP. and the submit button takes me to the

    total. how do i make all in 1 page? I know how to code the quiz and the answer page to calculate how many right but i was told that for next year ill have to know how to do it all on one page. the info given is: A Grade three teacher has approached our company and explained that she needs a...
  8. L

    PHP not marking right. need help.?

    my coding is this. //Question 5's answer: 2000 self titled 2002 iowa 2004 mfkr 2006 vol3 (the subliminal verses) 2008 all hope is gone $q5obj = stripos($releases, "2000 self titled").stripos($releases, "2002 iowa").stripos($releases, "2004 mfkr").stripos($releases, "2006 vol3 (the...
  9. L

    need PHP help. stripos isn't working?

    //Question 5's answer: 2000 self titled 2002 iowa 2004 mfkr 2006 vol3 (the subliminal verses) 2008 all hope is gone $q5obj = stripos($releases, "2000 self titled").stripos($releases, "2002 iowa").stripos($releases, "2004 mfkr").stripos($releases, "2006 vol3 (the subliminal...
  10. L

    php textarea need help!?

    ok for computer class at school we have had to make a form which i have done in html. and in php we have to make it calculate how many answers are right. But one of the questions is a textarea (Q5) which ask's you to list 5 things. Now as i have coded it atm if you do not list them in the...
Back
Top