Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Form Post Help Reply To: Form Post Help

#182231
__
Participant

Assuming all of your inputs have names,

if( $_POST['otherCheckbox'] ){
    /* do something with */ $_POST['otherTextarea'];
}

Beyond that, we’d need to see some code.