Suppose I have a form like this:
Section1: Sec
Use the $_POST variable like this.
$_POST
= isset($_POST['post_text'])?$_POST['post_text']:'' ?>
the inline conditional checks if the $_POST['post_text'] is set to remove the NOTICE warning
$_POST['post_text']