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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.