PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
//check for implementing organizations - lead firm
if (empty($_POST['leadfirm']))
{
$lf = false;
$message .= 'You forgot to enter the project lead firm<br>';
}
else
{
$lf = $_POST['leadfirm'];
}
and i have a textfield that may accept a blank or null field and if the user type some text in this textfield, will be saved in my db....maybe someone out there that can help me construct a code....if i use the above code, the page will prompt the userthat he has to put some text inside the textfield...tnx in advance