用php检查textarea

时间:2012-02-14 09:33:06

标签: php textarea

我有一个textarea字段,并希望在字段为空时添加文本或php代码,如果字段不为空则添加另一个PHP代码。例如:

如果字段为空>做某事.....其他>做某事......

我不擅长php,所以我很乐意提供任何帮助。 感谢。

。抱怨我的英语。

3 个答案:

答案 0 :(得分:2)

<?php echo isset($_POST['texarea_name']) && !empty($_POST['texarea_name']) ? 'textarea not empty' : 'texarea is empty'; ?>

答案 1 :(得分:2)

假设您从表单发布此内容,则可以执行以下操作。

我会在很长一段时间内写出来,以便更容易理解:

if (!empty($_POST['TEXTAREA_NAME']){
     // If the textarea is set then do something here
} else {
     // If it is NOT set it then it will do the code here
}

答案 2 :(得分:1)

要测试外部变量是否为空,您只需将其与空字符串进行比较

即可
if ( $_POST['text'] === '') {
     echo 'there was something';
} else {
     echo 'nothing to say';
}