PDA

View Full Version : Adding new <input's in newthread.php


Tekton
01-09-2005, 04:09 PM
Hiya; I tried adding another input into the newthread template right above the submit new thread button:

<input type='checkbox' name'dcs_mkr' id='dcs_mkr' checked/>

And I can't seem to get it's value. I'm trying $_REQUEST['dcs_mkr']. Is there something more I need to add besides just adding the input into the form?

Dean C
01-09-2005, 04:26 PM
$_POST['dcs_mkr'] is what you want :)

Marco van Herwaarden
01-09-2005, 06:21 PM
And "name=" instead of "name" on the input line :D

Link14716
01-09-2005, 09:24 PM
$_POST['dcs_mkr'] is what you want :)
$_REQUEST would work as well, though. ;)

Tekton
01-09-2005, 10:59 PM
And "name=" instead of "name" on the input line :D
Oh... wow. Thanks. ^^;;