2011-08-31, 08:01:02
(This post was last modified: 2011-09-01, 12:56:46 by Horse riding.)
Thanks for the replies, I didn't want it get deleted automatically even if there aren't any contents. My clients won't be able to know about inserting
So I've changed the condition from
to
so it will only verify the title, not the content, thanks!
Code:
or
<!-- comment -->
So I've changed the condition from
Code:
if ( ($title[$ct] != null) && ($value[$ct] != null) ) {
to
Code:
if ( $title[$ct] != null ) {
so it will only verify the title, not the content, thanks!