Aller au contenu

recherche d'un fonction php


choklata

Sujets conseillés

Tu fais une redirection

header("Location: http://ton.site.tld/ta_page");
exit();

pour ton exemple:

if ($a=$b)
{
 header("Location: http://ton.site.tld/ta_page");
 exit();
}

MAIS attention tu ne dois rien afficher avant ta redirection (donc pas une seule ligne de html, ni un bon vieu echo (ou print)

Lien vers le commentaire
Partager sur d’autres sites

Pour la fonction header, reprends bien la synthaxe donnée par Webadev. Une erreur dans le texte entre guillemets, et la redirection ne s'effectuera pas.

Lien vers le commentaire
Partager sur d’autres sites

hum... on ne sera pas si intégriste pour la fonction header ;)

Note:  HTTP/1.1 requires an absolute URI as argument to Location:  including the scheme, hostname and absolute path, but some clients accept relative URIs. You can usually use $_SERVER['HTTP_HOST'], $_SERVER['PHP_SELF']  and dirname() to make an absolute URI from a relative one yourself:

> http://php.belnet.be/manual/en/function.header.php

Lien vers le commentaire
Partager sur d’autres sites

Veuillez vous connecter pour commenter

Vous pourrez laisser un commentaire après vous êtes connecté.



Connectez-vous maintenant
×
×
  • Créer...