Jump to content

grab question?


ihatephp

Recommended Posts

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
https://forums.phpfreaks.com/topic/114035-grab-question/#findComment-586175
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.