gesf
New member
You need something like this:
See more here: mysql_fetch_array()
Code:
<?php
$result = mysql_query("SELECT * FROM washington WHERE WaID = '1'");
while($row = mysql_fetch_array($result)){
echo $row[wa_header];
// if this is the field where´s the header content
}
?>