naw that didnt work either. Hmm...
In
postings.php I have
PHP Code:
if ($_POST['do'] == 'test')
{
echo "$testme";
}
in the
showthread template I have:
PHP Code:
<div><label for="ao_cct"><input type="radio" name="do" id="ao_cct" value="outputit" />OutPut It!</label></div>
<input type="text" name="testme" value="$testme" size="12">
That code is right beneath all the other admin functions like Split Thread, Move Thread, etc. So when you hit Perform action, it should post that variable back.
I'm not even sure if Im doing this right...
Ok I did a
PHP Code:
if (isset($testme)) {
echo "$testme";
}
else {
echo "crap";
}
and I saw the word crap, which means the variable isnt being passed or SET