Variable PHP
Résolu/Fermé
A voir également:
- Variable PHP
- Easy php - Télécharger - Divers Web & Internet
- Php natif - Forum PHP
- Variable objet ou variable de bloc with non définie - Forum VB / VBA
- Impossible de créer le fichier de travail. vérifiez la variable d'environnement temp ✓ - Forum Word
2 réponses
cs-bilou
Messages postés
769
Date d'inscription
dimanche 2 décembre 2007
Statut
Membre
Dernière intervention
24 février 2011
164
25 janv. 2010 à 19:36
25 janv. 2010 à 19:36
Et la concaténation alors ?
Pour ton fichier test2.php, comme ça sa serait mieux:
Bilou.
Pour ton fichier test2.php, comme ça sa serait mieux:
echo "<img src='http://www.site.com/image?user=".$_POST['nom']."&action=&img_format=gif'/>";
Bilou.
hugs-giver
Messages postés
88
Date d'inscription
jeudi 27 décembre 2007
Statut
Membre
Dernière intervention
10 juin 2014
30
25 janv. 2010 à 19:41
25 janv. 2010 à 19:41
Salut(.
Tu n'a pas un message d'erreur?
essay comme ça :
<?php
if(isset($_POST['nom']))
{
$nom = htmlspecialchars($_POST['nom']);
echo "<img src='http://www.site.com/image?user=$nom&action=&img_format=gif'/>";
}
else
{
echo "erreur...";
}
?>
et met au moin un htmlspecialchars(); pour récuperer tes variables histoire de..., ça coute rien!!
Tu n'a pas un message d'erreur?
essay comme ça :
<?php
if(isset($_POST['nom']))
{
$nom = htmlspecialchars($_POST['nom']);
echo "<img src='http://www.site.com/image?user=$nom&action=&img_format=gif'/>";
}
else
{
echo "erreur...";
}
?>
et met au moin un htmlspecialchars(); pour récuperer tes variables histoire de..., ça coute rien!!
25 janv. 2010 à 19:42