-1
I wonder if I can show an image depending on the name.
 $qr = mysql_query($sql) or die(mysql_error());
 while($exibe = mysql_fetch_array($qr)){
 echo'<div id="tabs-1">
       <p>Nome: '.$exibe["Nome"].'</p>
       <p>Morada:   '.$exibe["Morada"].'</p>
       <p>Distrito: '.$exibe["Distrito"].'</p>
       <p>Concelho: '.$exibe["Concelho"].'</p>
For example: Show me the name of a team (Real Madrid) and I can get it to show me the symbol of it without touching the database.
I can do that?
the image is also stored in the database?
– Sergio