|
Answer» I made a simple quiz with quizbox.com and it gave me the html output. When I run the html file from my COMPUTER, take the quiz and click Grade Me it takes me to a scoring page. But I upload it to my website and when I click Grade Me it brings me to an error page. What can I do to have it work the same on my website as on my computer? The html is the same on both.
Website link: http://adamdekroon.com/example-test.html
This is the html I'm working with:
Code: [Select]<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body style="">
<H3>CP Worldviews</h3>
<form action="http://www.quizbox.com/builder/result.aspx?max=2&q=2" method="post"> <input type="hidden" NAME="QuizTitle" value="Test Quiz"> <input type="hidden" name="QuizReturnLink" value="http://google.com/"> <ol> <li>What colors are the US flag?</li><br> <input type="radio" name="ans1" value="1">Red, WHITE, Blue<br> <input type="radio" name="ans1" value="0">Yellow and Red<br> <input type="radio" name="ans1" value="0">Black and white<br><br>
<li>Google is</li><br> <input type="radio" name="ans2" value="1">Beauty products company<br> <input type="radio" name="ans2" value="0">A virtual STOCK market<br> <input type="radio" name="ans2" value="0">A poor outlook on life<br><br>
</ol>
<p><input type="submit" value="Grade Me" onclick="this.value='Please wait...'"></p> </form> <!-------- Quiz Ends Here --------> </body></html>Go to this website it will test it and tell you what's wrong http://html5.validator.nu That's all I have got It works for me!Perhaps there are restrictions about running external links, or scripts on your hosting site? What is the specific error?
-Mal
|