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? 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'; Link to comment https://forums.phpfreaks.com/topic/73518-simple-question/#findComment-370903 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.