Jump to content

grab question?


ihatephp

Recommended Posts

ya this sounds so simple, a beginner could do it.

 

Lets think for a second,

 

Database would help

A special page for teachers

A special page for the students

 

That would be all, then programming it all out.

 

I could do this in about 30mins, but I am not.

Link to comment
Share on other sites

wad i have at the teacher page here(process)

$qn = $_POST['qn'];
echo "RJ Question set:<br />{$_POST['qn']}<br /><br />";

 

So,to grab tht question at student page

<?php
echo "Question :<br/>{$GET['question']}<br /><br />";
?>

 

but...din wrk

sry,lousy basics i have

Link to comment
Share on other sites

change this:

$qn = $_POST['qn'];
echo "RJ Question set:<br />{$_POST['qn']}<br /><br />";

to this:

<?php
$qn = $_POST['qn'];
echo "RJ Question set:<br />" . $_POST['qn'] . "<br /><br />";
?>

 

change this:

<?php
echo "Question :<br/>{$GET['question']}<br /><br />";
?>

to this:

<?php
echo "Question :<br/>" . $_GET['question'] . "<br /><br />";
?>

 

Regards ACE

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.