Jump to content

Email Verification, Help


smithmr8

Recommended Posts

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

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.