Nov 7, 2009
Pages: 1, 2, 3

Php Quiz Script - Make quizzes for your site.

free web hosting

Read Latest Entries..: (Post #27) by iGuest on Oct 20 2009, 09:16 PM.
How can I validate the answers with feedback to the students Php Quiz Script maddog39, this is an excellent script. Thanks alot. Its very simple and can be easily modified. Could you kindly guide me as to how I may be able to validate the answers and also provide feedback. For example if let say the examinee puts in 'A' but the correct answer is 'B' - how can I let the examinee know that the provided answer is 'Incorrect' and 'Why B is the correct answer' Thanks for your help. Aftab ...
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > MODERATED AREA > Tutorials

Php Quiz Script - Make quizzes for your site.

maddog39
Hello all,

A little bit back I decided to make a quiz scriptjust out of no where lol. However it doesnt do anything special but I am going to make an email mod for it so that it will email results to your email address. So here is the basis of it.

INSTRUCTIONS:
Open a new page in your text editor and paste in the following code.
CODE

<?php
$qid = "Quiz ID-00";
?>
<html>
<head>
<title><? echo "Gamers Pub $qid"; ?></title>
</head>
<body>
<p><h3><? echo "SiteName $qid"; ?></h3></p>
<form action="results.php" method="post">
<p>Username: <input type="text" name="name"></p>
<p>1.) Question number one is?<br>
<input type="radio" name="q1" value="Answer1"> Answer1<br>
<input type="radio" name="q1" value="Answer2"> Answer2</p>
<p>2.) Question number two is?<br>
<input type="radio" name="q2" value="Answer1"> Answer1<br>
<input type="radio" name="q2" value="Answer2"> Answer2</p>
<p>3.) Question number three is?<br>
<input type="radio" name="q3" value="Answer1"> Answer1<br>
<input type="radio" name="q3" value="Answer"> Answer2</p>
<p>4.) Question number four is?<br>
<input type="radio" name="q4" value="Answer1"> Answer1<br>
<input type="radio" name="q4" value="Answer2"> Answer2</p>
<p>5.) Question number five is?<br>
<input type="radio" name="q5" value="Answer1"> Answer1<br>
<input type="radio" name="q5" value="Answer2"> Answer2</p>
<p><input type="submit" name="submit" value="Submit Quiz"></p>
<input type="hidden" name="qp" value="quiz00.php">
</form>
</body>
</html>

and then save it as quiz00.php and edit it obiously, lol to what you want. I shouldnt be hard because its mostly just html. But NOTE that if you go over 5 questions then you need to modifiy the php script that shows the results to display those added questions.

Here is the results page which displays the results from the forms. Open up a new page in your text editor and paste in the following code.
CODE

<?php
$title = "Quiz Results";
echo "<title>$title</title>";
// Below gets the answers from the page before //
if (isset ($_POST['submit'])) {
  $name = $_POST['name'];
  $q1 = $_POST['q1'];
  $q2 = $_POST['q2'];
  $q3 = $_POST['q3'];
  $q4 = $_POST['q4'];
  $q5 = $_POST['q5'];
  $qp = $_POST['qp'];
}
// Below checks to see if you forgot anything //
if ($name == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q1 == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q2 == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q3 == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q4 == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q5 == "") {
  die ("You forgot something, go back and check over your quiz.");
}
// Below is where the answers are actually displayed //
{
echo<<<EOT
<p>Results: $name<br>
1.) $q1<br>
2.) $q2<br>
3.) $q3<br>
4.) $q4<br>
5.) $q5</p>
<p><a href="$qp">Go Back To Quiz?</a>

EOT;
}
?>

and then save it as results.php. Also this time I put comments in there which should give you some hints to what is going on in the process of getting and displaying the answers. I will be making a mod soon that will be added on to this and it will email the forms to a selected email address so that they are sent to something to be reviewed by a person... you know what I mean?

Also if you want a demo, I have one set up on my website:
Demo: CLICK HERE

If you need any help or some more understanding of the script then just ask by reply ing to this post. Enjoy! biggrin.gif

 

 

 


Comment/Reply (w/o sign-up)

NilsC
Nice demo on your site, good job.

Nils

Comment/Reply (w/o sign-up)

RGPHNX
Hi maddog39,
Very nice idea/ implementation. Can't wait to see the e-mail forwarding function/ mod. Been looking for something like this for a while. How would you go about making this an exit questionaire(pop up etc.) for your website when visitors leave?
RGPHNX

Comment/Reply (w/o sign-up)

maddog39
I would probabl put some Javascripts to do it in my front page and then insert sessions into the pages so it knows when to do it and to see if the person already saw the quiz, things like that. biggrin.gif

Comment/Reply (w/o sign-up)

GM-University
Woah, that's really good, nice job! You should try adding a answer scrambler where it mixes up the answers so multiple answer questions will have diferent letters each time.

Comment/Reply (w/o sign-up)

maddog39
I think thats a little hard. That would be easier with flash or something prolly. I am still learning php and I can do all this stuff lol. Anyway thanks for all the completments. I should have that mod by tomorrow because im kinda busy today. biggrin.gif

Comment/Reply (w/o sign-up)

maddog39
Okay guys. Im sorry it took so long ive just been kinda really busy. Anyway here it is with the email mod. All you have to do is open up results.php, erase the hole entire thing and paste in this new code. I had to kinda mod the hole thing so its just easier to do it this way. So heres the code.
CODE

<?php
$title = "Quiz Results";
echo "<title>$title</title>";
if (isset ($_POST['submit'])) {
  $name = $_POST['name'];
  $q1 = "1.)" . $_POST['q1'];
  $q2 = "2.)" . $_POST['q2'];
  $q3 = "3.)" . $_POST['q3'];
  $q4 = "4.)" . $_POST['q4'];
  $q5 = "5.)" . $_POST['q5'];
  $qp = "6.)" . $_POST['qp'];
}
if ($name == "") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q1 == "1.) ") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q2 == "2.) ") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q3 == "3.) ") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q4 == "4.) ") {
  die ("You forgot something, go back and check over your quiz.");
}
if ($q5 == "4.) ") {
  die ("You forgot something, go back and check over your quiz.");
}
{
echo<<<EOT
<p>Results: $name<br>
$q1<br>
$q2<br>
$q3<br>
$q4<br>
$q5</p>
<p><a href="$qp">Go Back To Quiz?</a>

EOT;
}
$Name = $_POST['name'];
$Subject = "Quiz Results";
$Email = "You@mail.com";
$Message = "Here are the quiz results.";
$align = $_POST['align'];
$to = "$EmailTo";
$subject = "$Subject";
$body = "$Message\n\nQuiz By: $Name\n$q1\n$q2\n$q3\n$q4\n$q5";
mail($to,$subject,$body);
header("Location: sent.htm");
?>

and change the things you need to change. You will need to change the '$Email' variable to your email address inside the quotes and you will also need to make another page called sent.htm which would probably look something like this...
CODE

<html>
<head>
<title>Message Sent</title>
</head>
<body>
<p>Your quiz has been sent to the webmaster. You should recieve a reply shortly. </p>
<p><a href="http://yoursite.trap17.com/index.php" target="_self">Go Back To Index?</a></p>
</body>
</html>

which will tell the person that there quiz was sent. Also change'yoursite' yo your actual website URL so that they may go back to you homepage. wink.gif biggrin.gif

 

 

 


Comment/Reply (w/o sign-up)

Carsten
I did a little improving on the results.php page:
CODE
// Below gets the answers from the page before and checks to see if you forgot anything
while (extract($_POST) == '' && isset($_POST['submit']))
{
die("You forgot something, go back and check over your quiz.");
}

// make some valid html with newlines
echo "<html>\n<head>\n<title>\nQuiz Results\n</title>\n</head>\n<body>\n";
echo "Results: $name<br />\n";

for ($i = 1; $i <= 5; $i++) {
echo "$i.) ${q . $i}<br />\n";
}

echo '<a href="' . $qp . '">Go Back To Quiz?</a><br />';
echo "\n</body>\n</html>";

Comment/Reply (w/o sign-up)

maddog39
Wow.... meh.... I kinda got really lost when it got to the make some valid html newlines and im not sure what that means. Plus the point of this is to improve the understanding to the newbs and I hate making things overly complicated.

Comment/Reply (w/o sign-up)

Carsten
I just ment to make a valid html page, because you only included the <title> and some <p>'s. You missed <html>, <head> and <body>. The newlines are coded in php as \n. They will output the code after it on a new line, so you don't get <html><head><title>etc.. but start with a new line for each important html element.

Comment/Reply (w/o sign-up)

Latest Entries

iGuest
How can I validate the answers with feedback to the students
Php Quiz Script

maddog39, this is an excellent script. Thanks alot. Its very simple and can be easily modified. Could you kindly guide me as to how I may be able to validate the answers and also provide feedback.

For example if let say the examinee puts in 'A' but the correct answer is 'B' - how can I let the examinee know that the provided answer is 'Incorrect' and 'Why B is the correct answer'

Thanks for your help.

Aftab

-question by aftab

Comment/Reply (w/o sign-up)

plastkstar
Ooh, this looks really neat, but the demo isn't showing up.
I would definitely use this if I could see a preview.

Comment/Reply (w/o sign-up)

acricket
its just awesome dude thanks

Comment/Reply (w/o sign-up)

iGuest
Where are the answers?
Php Quiz Script

I'm sorry I've read over this and am interested in implementing it into my site but I'm unsure where you set the correct answers? It may be right infront of my nose but I can't see it

Any clues?

-question by Siggy

Comment/Reply (w/o sign-up)

iGuest
Best PHP Quiz Script I\\
Php Quiz Script

Thanks a lot and more. This is the best script to create a PHP quiz with results tracking I've ever seen. I guess thousands of people will thank for this.

However, I still think it's a little simple, can I make PHP quiz with some pictures or sounds like what's in Flash quiz (Sameshow.Com/samples/math-symbols/math-symbols.html)?

William

-reply by William Peterson

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2, 3
Similar Topics

Keywords : php, quiz, script, make, quizzes, site

  1. [aef] Most Recent Topics Listing Mod
    on your Web-site pages (2)
  2. How To Make An Ultimate Game List.
    If you're making a site on video games or such. (0)
    Hello. I am BuBBaG. You can call me Bubba for short. I'm going to show you how to make an
    Ultimate Game List. First off, we need to make a database, we are going to call this database
    `my_db`, leave out the `'s. Inside that database we will need to create a table called
    `ugl'(Ultimate Game List, duh). To make the table, simply enter this in the Syntax. CODE
    CREATE TABLE ugl ( System char(50), Game char(50), ) In the above code, it is stating we are
    creating a table called ugl, with two columns, System, and Game. Next, we will need to make a form,
    t....
  3. Simple Stylesheet Tutorial
    Stylesheet embedded in your site. (2)
    Hi - ill show you how to make a simple style sheet that will be embedded into your site. OK make
    sure your site is set up already (like the standard tags) To start and end off a stylesheet you
    need to do the following CODE Ok lets start CODE p { font-family: "Tahoma";
    font-size: 9; color: "red"; } So when you come to put in CODE Hi! The text will
    appear red and will be in Tahoma. I will now just show you how to change the background colour of
    the text. CODE span.hilightred {background-color: "red";} span.hilightblue {backgrou....
  4. [phpbb] Member Last-visit Report Script
    for phpbb2 databases (0)
    One flaw in the phpbb2 administration section is a report to list out the 'last-visit'
    time/date of the membership. I wrote a script to do exactly that and will be sharing the script with
    you here. the first section defines the variables required for the Database connection, finding the
    right database, supplying passwords, etc. HTML DEFINE ('DB_USER', 'YOUR DB USER
    NAME'); // change these defined values to suit your own situation DEFINE ('DB_PASSWORD',
    'YOUR DB PASSWORD'); DEFINE ('DB_HOST', 'localhost'); DEF....
  5. How To Set Up A Bookmarking System On Wii
    Use your favorite social bookmarking site. (0)
    This is a simple tutorial on a way to set up a bookmarking system on your Wii with greater stroage
    than the Favorites. It is more complicated than the Favorites and requires manual URL typing. Well
    let's dive on in. Items Required Nintendo Wii Internet Channel 3 Empty Favorites Internet
    Connection An account on a social bookmarking site I will be using delicious as an example.
    delicious Ok, if you do not have an account, read on. If you do have an account, go to the
    {account} section. Ok, first you need to register an account. This can be done by clicki....
  6. Create A Google Seach Result Page Embed Within Your Site Page.
    (12)
    Create a google seach result page embed within your site page. It is easier to create
    web page that embeded the google search result in it. The first step is to go to google apply an
    account for the google ad-sense. After that login to you account and choose the create ad-seach
    option. Most of time the google search box give all we have the great and powerfull seach ability.
    But, have you think every time users get seach with it. They do redirected to another page that is
    not within you site. It is easier to create web page that embeded the google sea....
  7. Php Word Filter
    Have you accidently sworn on your site? Or do you want to keep visitor (9)
    This is pretty simple but very useful if you don't want people to swear. We will be using
    str_replace for this. CODE str_replace ("curseword, "replacemet"); ?> Thats pretty simple,
    just fill in the curse word and the replacement, and then repeat... heres what it would look like
    full size: CODE str_replace("swear", "replacement"); str_replace("swear", "replacement");
    str_replace("swear", "replacement"); str_replace("swear", "replacement"); ?> Ok, but how do you
    get it to work on your page now? Well, save that file as wordfilter.php and use CODE ....
  8. Background Image Swap Script
    Change a Background Image based on clock time (15)
    Background Image Changer Script To swap the background image from your CSS file according to the
    Server Clock Time. 1.) In your CSS file, add the following rule: CODE body {     background:
    url(time.png); } 2.) Create a "folder" named time.png. 3.) Into the folder, place three images
    named morning.png, day.png, night.png. 4.) Also, in the same folder, create an index.php file and
    copy/paste the following script. CODE $hour = date('H'); if ($hour     $image =
    "morning.png"; } elseif ($hour      $image = "day.png"; } else {      $image = "night.pn....
  9. Image Rotator Script (another One)
    easy to implement (0)
    In case you haven't noticed, I have a different Avatar display on the Forum each time the page
    is refreshed. /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif"
    /> For those of you who might want the script to do that, here is the one I am using: HTML
    $filesp = glob('*.png'); if(empty($filesp)){ echo 'no images found...die br >';
    die(); } else{ foreach ($filesp as $file) { $img_array = trim($file); } } shuffle($img_array);
    //select image at random header("C o n t e n t{dash}t y p e: image/png"); // replace th....
  10. Faux Ajax Loading - Css Only
    Pretend your site is Ajax based (3)
    Link: http://www.jlhaslip.trap17.com/samples/misc/ajax/index.html Check that out. The first page
    has information and the second and has the actual example of its use with sample CSS code. I find
    that when you visit a site which has a slow server and attempt to view 'large' Image files,
    it is pretty boring to sit and stare at a blank screen, so this little snippet of code can be used
    to give the visitor something to see to indicate that the image is being downloaded. I built a
    small animated gif that sits in the background of the space allocated for the image....
  11. For ... Next Loops And Script Planning
    My Fifth PHP Tutorial (2)
    Be sure to read the other ones. They are located in the TUTORIALS section, and at the time of this
    writing all on the first page. Intro To PHP Tutorial 5 - For ... Next Loops and Planning Scripts
    Released 4/15/07 By Chris Feilbach aka GhostRider Contact Info: E-mail: assembler7@gmail.com AIM:
    emptybinder78 Yahoo: drunkonmarshmellows Website: http://www.ghostrider.trap17.com Before I start
    talking about what wonderful things loops are and all the cool stuff they can do, I want to address
    something first. I was asked about something to write in PHP. There isn't....
  12. Making The Popular Id Browsing For Your Site.
    (17)
    Was just sitting and being bored but then I realized I could show how to create more or less popular
    ?id=page browsing. It's actually really easy. I know two ways how to do it. First one I learned
    was checking the variable and if it's true including the text/file/anything needed and so on. It
    was ok, but sometimes I just couldn't make it work so I switched to switch() function and
    that's what I'm going to show you guys right now. So, I made a test page which contains the
    code needed and here is its source. CODE Untitled Home - P....
  13. Cpanel Useful Site Management Tools 2.1
    Part 3 of My 7 Part Tutorial (0)
    This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
    other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
    emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 1: E-mail Management Part 2: Useful Site
    Management Tools Part 4: Analysis/Log Files Part 5: Advanced Tools Part 6: PreInstalled
    Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial Part 2.1:
    Useful Site Management Tools In this tutorial I will, in detail explain all of th....
  14. Cpanel Useful Site Management Tools
    Part 2 of My 7 Part Tutorial (0)
    This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
    other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
    emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 1: E-mail Management Part 3: Useful Site
    Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part 6: PreInstalled
    Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial Part 2:
    Useful Site Management Tools In this tutorial I will, in detail explain all of t....
  15. Quiz With Php, But Without Mysql
    (3)
    Ok let`s start! Once I wrote it for school: At first we need questions (php) CODE $form_block =
    " Quiz What's The Capital City Of England? How Many Letters Are There In The
    Alphabet? WHat's 3+10? "; That takes the form of a form... You can, of
    course edit the questions. I will now break that code down and explain the different parts. CODE
    The reason that any "s (Double quotes) are shown after a \ (Backwards slash) is becouse the
    PHP Parser will spew out errors if you forget to do this. "POST" Means that it will ....
  16. How To: Ip Configuration Script (win Xp)
    If you travel a lot with your laptop, and need to switch between diff (0)
    How To: IP Configuration Script (win XP) If you travel a lot with your laptop, and need to switch
    between different IP's in different locations, this script is for you. There are many programs
    that handle this task very well, but they cost sometimes pretty big money. This tutorial will show
    you how to make your own IP Configuration Script for free. This script is for a static ip address
    configuration and is based on a little program called "NETSH.EXE" which is supplied with Windows.
    How it works. QUOTE Microsoft Windows XP - Using Netsh Netsh.exe is a....
  17. Php Script To Make A Link List
    From the list of the Directory Files (6)
    Well, it has been a while since I have added anything to the Tutorial Sectiion, so here is another
    script for the members to enjoy. This one creates a list of links from the contents of the directory
    which it is run from. For instance, if you run it from the public_html folder, then all the files
    (not the Directores) are listed and linked so when you click on the link, that file is parsed and
    output to the browser. Here is the code: "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    An XHTML 1.0 Strict Page to List the files in this directory ....
  18. Templating System Using Php Includes
    Building a Dynamic site using Includes and flat-files. (13)
    Php based Templating System http://jlhaslip.trap17.com/template/index.php The Source Code
    for the scripts are included (literally) on the different pages on the Demo, including the Contact /
    Email script. The only page not there yet is the Message Script. Maybe tonight I will upload that.
    This one uses a little bit of query-string checking to confirm that the contents of the page are
    actually available (file_exists())and an allowed page content before serving it up. The
    'allowed page content' is done by checking against a flat-file containing an array....
  19. Php Spy Code
    Spy on your site! (21)
    Code Spy Code Description Anyone who comes to ur forum's IP Adress, Site they came From,
    Their Browser and the time they came will get saved in a place that only the admin knows the
    location of... V.2 More features coming up in V.2!!! POst suggestions/problems... Preview:-
    http://s15.invisionfree.com/Spy/index.php ? REFRESH THE PAGE, AND GO HERE:-
    http://h1.ripway.com/programming/spy%20code/spy.html ^^^^^^^That shows all the IP's, Browsers,
    Time, site and stuff....^^^^^^^^ Code First of all, you'll need to host the files.... I
    suggest you make....
  20. How To: Make A Simple Php Site
    Making one file show up on all pages using php (21)
    I have looked all over the site and could not find anything that was like this simple, or just like
    this at all.. For some people i know that you are using a basic HTML site...and having a big menu
    if you want to add somthing you have to go into every one of the pages and add or remove or edit
    what you want to do, but with somthing verry simple all you would have to do is edit one file, and
    all of the pages that have the PHP script on them would suddenly change to what that one file is.
    So to start off if you are planning on using this little tirck, the page that you a....
  21. Verifying Email Addresses
    Using a simple PHP script (9)
    This simple script will allow you to run some basic checks to make sure that any email address
    entered is actually an email address. There is no guarantee offered that this will stop every single
    fake email address, but it'll provide some protection. Now, the code! First we need to get the
    email address to verify. Here, I get it using POST from an HTML form. CODE //Load email
    address from web form $email = $_POST ; Now, we move on to our first check. Does the text that
    has been entered look like it could be an email address? This check can be performed....
  22. Phpbb Forum Site Transfer
    How to do it, step by step instructions (20)
    I'm sure many of you out there have used phpBB at some point. To those who enjoy running forums
    and online communities, specifically supporting phpBB, I am about to tell everyone how to restore
    the forums database from one website, to another. This is presuming you do not have any mods or
    hacks installed. Some of you may find this information useful. Here is the scenario: Let's say
    you have forums running phpBB version 2.0.17 (currently the latest one). You have decided that you
    want to move your forums to a whole new URL and provider, and as an added bonus, ch....
  23. Css And Javascript Combined For Dynamic Layout
    use of different CSS files at same site (9)
    This tutorial is meant for people that are dealing with problems while coding their site at 100% of
    width. Important notice: Some people has JavaScript disabled, so they will not be able to load CSS
    file (take this in account when creating your website). How this script works. In the HEAD of your
    HTML document will apply this command, so variable.js file will be load at start: CODE
    In browser JavaScript file variable.js is loaded. This Javascript file consist of this parameters,
    copy this code and name it variable.js CODE // JavaScript Document if (sc....
  24. [php] Simple Newsletter Script
    (18)
    This tutorial will give you the code needed and tell you how to implement it. First off you need to
    create a file called mailing.php this will be the file that processes the adding of emails to the
    list. CODE $email = $_POST ; $file = fopen("mailing.txt", "a"); fwrite($file, "\n" . $email);
    fclose($file); header("Location: mailing_thankyou.php"); ?> Next you need to create a file
    called mailing_thankyou.php , simple a page thanking them for signing up. Now create a file called
    mailing.txt with nothing in it, when uploaded to the server set it writable (c....
  25. How To Make A Very Simple Wap Site
    A quick tutorial about WML language (43)
    WAP Site Tutorial : How to Make A Wap site? Before We begin.. Defination from the
    Web about Wap. QUOTE WAP is an open international standard for applications that use
    wireless communication . Its principal application is to enable access to the Internet from a
    mobile phone or PDA .A WAP browser provides all of the basic services of a computer based web
    browser but simplified to operate within the restrictions of a mobile phone. WAP is now the
    protocol used for the majority of the world's mobile internet sites, known as WAP sites ....
  26. Checking The Web Site Speed
    (10)
    Did you taking too much time to access your favorite sites? Probably the problem is on the server
    used by those sites. To make sure that is the problem, use Windows PING facility. Ping is a small
    program, which sends a 32-bit signal to the Web site server. Next, Ping record the time needed by
    the server to answer it. To activate Ping: Click on the Start-Run menus, type command, and then
    click OK. Type PING "site name" in the MS-DOS prompt window, for example PING www.yahoo.com. In a
    moment, the result will appear on the screen. A result less than 300ms is normal spee....
  27. Email Script/form With Php
    how to make a simple email script using php (36)
    Today, I'm going to show you how to make an email script using PHP and HTML. Most people usually
    put Email me if they want an email link on their site, but there are several cons to this.
    First, it's very inconvenient for those people who use web-based mail such as Yahoo!, Hotmail,
    or Gmail because that darn Micro$oft Outlook program comes up if one accidently click the link.
    Second, you are very suseptible to spam bots because they scan your HTML source code for anything
    with the same pattern as an email address and add it to their database. If you are pre....
  28. How To Put A Phpbb Login Box On Your Main Site.
    Code and .php included!!! (19)
    I have included my coded file with this... Ok here is the code. CODE // //Create login area,
    replace the phpBB2 in /phpBB2/login.php with your forum's //directory //   Prank Place
    Forum Index     Please enter your username and password to log in.        
                  Username:                   Password:      
                Log me on automatically each visit:                    
    I forgot my password         You can test this out on my....
  29. HTML tags and examples
    Condensed form of course from my site... (37)
    Well, I decided to try and help out some of the users here who might be unexperienced in HTML, so I
    condensed the begginer's HTML course at my website. Here it is... Lesson 1 HTML means Hyper
    Text Markup Language. HTML is a very common language used for many websites, is the base for more
    complicated and powerful langauges like php, HTML can seem hard, but you will find it is one of the
    easiest langauges one can learn. The core of HTML is the tag, a tage is just a set of two
    arrows-like brackets created by hitting Shift and the comma key, or Shift and the period....
  30. Php Emailer/contact System
    An email or contact system for your site (20)
    Hello all, Here is an easy Emailer or Contact system that allows visitors or members of your site
    to email you just by filling out a form. So here is what you need to do to set it up. First open up
    a new page in your text editor and paste in the following code. CODE $Name = $_POST ; $Subject
    = $_POST ; $Email = $_POST ; $Site = $_POST ; $Message=$_POST ; $align = $_POST ; $to = "$EmailTo";
    $subject = "$Subject"; $body = "$Message\n\n\n$Site\nBy: $Name"; $headers = "From: $Email\n";
    mail($to,$subject,$body,$headers); // After they've clicked "Send", this is whe....

    1. Looking for php, quiz, script, make, quizzes, site
Similar
[aef] Most Recent Topics Listing Mod - on your Web-site pages
How To Make An Ultimate Game List. - If you're making a site on video games or such.
Simple Stylesheet Tutorial - Stylesheet embedded in your site.
[phpbb] Member Last-visit Report Script - for phpbb2 databases
How To Set Up A Bookmarking System On Wii - Use your favorite social bookmarking site.
Create A Google Seach Result Page Embed Within Your Site Page.
Php Word Filter - Have you accidently sworn on your site? Or do you want to keep visitor
Background Image Swap Script - Change a Background Image based on clock time
Image Rotator Script (another One) - easy to implement
Faux Ajax Loading - Css Only - Pretend your site is Ajax based
For ... Next Loops And Script Planning - My Fifth PHP Tutorial
Making The Popular Id Browsing For Your Site.
Cpanel Useful Site Management Tools 2.1 - Part 3 of My 7 Part Tutorial
Cpanel Useful Site Management Tools - Part 2 of My 7 Part Tutorial
Quiz With Php, But Without Mysql
How To: Ip Configuration Script (win Xp) - If you travel a lot with your laptop, and need to switch between diff
Php Script To Make A Link List - From the list of the Directory Files
Templating System Using Php Includes - Building a Dynamic site using Includes and flat-files.
Php Spy Code - Spy on your site!
How To: Make A Simple Php Site - Making one file show up on all pages using php
Verifying Email Addresses - Using a simple PHP script
Phpbb Forum Site Transfer - How to do it, step by step instructions
Css And Javascript Combined For Dynamic Layout - use of different CSS files at same site
[php] Simple Newsletter Script
How To Make A Very Simple Wap Site - A quick tutorial about WML language
Checking The Web Site Speed
Email Script/form With Php - how to make a simple email script using php
How To Put A Phpbb Login Box On Your Main Site. - Code and .php included!!!
HTML tags and examples - Condensed form of course from my site...
Php Emailer/contact System - An email or contact system for your site

Searching Video's for php, quiz, script, make, quizzes, site
See Also,
advertisement


Php Quiz Script - Make quizzes for your site.

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com