smithmr8 Posted February 23, 2008 Share Posted February 23, 2008 Hi, Im making an email verification system. Im unsure about how I can return a value like this 'd98fac0201ebe4e28b293ea9791293e4' from a URL. E.g. verify.php?code=d98fac0201ebe4e28b293ea9791293e4 Like I would do: if(isset($_GET['code'] == is_numeric$_GET['code'])) if it were just a numerical number. How would I make it so it picked up the code ? Thanks Link to comment https://forums.phpfreaks.com/topic/92539-email-verification-help/ Share on other sites More sharing options...
pocobueno1388 Posted February 23, 2008 Share Posted February 23, 2008 From this url verify.php?code=d98fac0201ebe4e28b293ea9791293e4 To grab what you want, you would just do this <?php $code = $_GET['code']; echo $code; //Will print "d98fac0201ebe4e28b293ea9791293e4" ?> Does that answer your question? I'm not exactly sure what your trying do accomplish with your IF statement. Link to comment https://forums.phpfreaks.com/topic/92539-email-verification-help/#findComment-474170 Share on other sites More sharing options...
smithmr8 Posted February 23, 2008 Author Share Posted February 23, 2008 Ah, ok. Thanks. I'll try that. I use if-statements as I usually have more than one thing on a page. Link to comment https://forums.phpfreaks.com/topic/92539-email-verification-help/#findComment-474172 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.