12-24-2007, 12:33 AM
|
#19 (permalink)
|
|
The Contributor
Join Date: Nov 2007
Location: California
Posts: 82
Thanks: 0
|
Oh.
Code:
<form action="newpost.php" method="POST">
try changing that to:
Code:
<form action="newpost.php?t=<?=$_GET['t'];?>" method="POST">
(Using PHP short tags)
Last edited by dschreck : 12-24-2007 at 12:37 AM.
Reason: bleh - new answer
|
|
|
|