I wonder if I can display 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 get him to show me the symbol of the team without touching the database.
Can I do this?