I have a question. I'm doing a job where I have a page that shows the name of a club.
while($exibe = mysql_fetch_array($qr)){
echo '<p><h2>'.$exibe['Nome'].'</h2></p>';
}
And I want you to click on the name or a button on the front to show me the whole information of this Club on another page.
while($exibe = mysql_fetch_array($qr)){
echo'<div id="tabs-1">
<img align="right" src="logos/'.$exibe["Nome"].'.jpg">
<p>Nome:<b>'.$exibe["Nome"].'</b></p>
<p>Morada: '.$exibe["Morada"].'</p>
<p>Distrito: '.$exibe["Distrito"].'</p>
<p>Concelho: '.$exibe["Concelho"].'</p>