c'est comment qu'on affiche un blob ?? [PHP] - Programmation
Marsh Posté le 16-12-2001 à 15:59:14
j'ai un champ de type blob, comment je l'affiche dans un tableau ? $resultat=mysql_fetch_object($requete); <- dans requete, j'ai un champ message de type blob j'ai essayé $resultat->message mais ça marche pas, c'est normal ?
Marsh Posté le 16-12-2001 à 16:40:57
$blob=mysql_fetch_array(mysql_query("SELECT tonblob FROM tatable" )); echo $blob[tonblob];
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 16-12-2001 à 15:59:14
j'ai un champ de type blob, comment je l'affiche dans un tableau ?
$resultat=mysql_fetch_object($requete); <- dans requete, j'ai un champ message de type blob
j'ai essayé $resultat->message mais ça marche pas, c'est normal ?