irkevin Posted October 1, 2007 Author Share Posted October 1, 2007 ok i removed it.. now when i hit space and type a letter, it removes the whitespace, as if i never hit spacebar before.. but when i hit spacebar and don't type a letter, it insert a blank message.. http://www.mu-anime.com/test.php have a look Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358887 Share on other sites More sharing options...
darkfreaks Posted October 1, 2007 Share Posted October 1, 2007 you need to throw an if statement so if it returns empty it doesnt submit. <?php if(empty($shoutt)){ echo " Please insert a Message!";} ?> Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358888 Share on other sites More sharing options...
irkevin Posted October 1, 2007 Author Share Posted October 1, 2007 working.. rocking thanks man.. i used this if(!$shouter || empty($shout)){ //do nothing }else{ //connect to dabatase and insert } Do you know some other things i should add with a shoutbox? like preventing html or links? Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358889 Share on other sites More sharing options...
darkfreaks Posted October 1, 2007 Share Posted October 1, 2007 try strip_tags it removes all html and PHP code from being inserted Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358890 Share on other sites More sharing options...
irkevin Posted October 1, 2007 Author Share Posted October 1, 2007 ok nice and thanks for your help.. btw, may i add u on msn? Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358891 Share on other sites More sharing options...
darkfreaks Posted October 1, 2007 Share Posted October 1, 2007 sure Link to comment https://forums.phpfreaks.com/topic/71324-solved-dealing-with-forms/page/2/#findComment-358892 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.