jbrill Posted October 16, 2007 Share Posted October 16, 2007 hey guys, trying to do something really simple here. just need a bit of help im pretty new to php. I would like this code: $keyword= (isset($_GET["keyword"])) ? $_GET["keyword"] : NULL; to to show "0" rather nothing at all (NULL) if the $_GET doesnt exist exist. how would i go about doing this? Quote Link to comment https://forums.phpfreaks.com/topic/73518-simple-question/ Share on other sites More sharing options...
Psycho Posted October 16, 2007 Share Posted October 16, 2007 Replace the 'NULL' with '0' $keyword= (isset($_GET["keyword"])) ? $_GET["keyword"] : '0'; Quote Link to comment https://forums.phpfreaks.com/topic/73518-simple-question/#findComment-370903 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.