Jump to content
Fórum Script Brasil
  • 0

[RESOLVIDO][AJUDA] paginação


geehmetal

Question

Olá, tenho a seguinte duvida, gostaria de selecionar uma parte da url e executar funções dependendo do resultado da url.

Exemplo:

// SE A URL FOR index.php?signup=1

if (SE FOR signup=1) {
echo "<div>ERROR MSG 1</div>";
}
if (SE FOR signup=2) {
echo "<div>ERRORS MSG 2</div>";
}

Como faço, vi que com parse url é possivel, mas ainda não aprendi a lidar com ele, se alguém puder ajudar, fico grato!

BASTA UTILIZAR:

// se url for: index.php?signup=1
$GETURL = $_get['signup']; // PEGA URL ?signup

if ($GETURL == "1") { // SE URL FOR ?signup=1
 // SUAS MSG SE FOR 1
} 
if ($GETURL =="2") { // SE URL FOR ?signup=2 
// SUAS MSG SE FOR 2
}
else { // SE não FOR NENHUM DELES EX: ?signup=3 OU ?signup=errors
echo "url invalida";
}

/* VOCÊ PODE TROCAR O "1" E "2" POR QUALQUER VALOR QUE DESEJAR EX: ?signup=fatalerror e no if coloque IF ($GETURL == "fatalerror")
*/ 
Edited by geehmetal
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

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

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...