|
|
Pike Industries is proud to have developed into one of New England’s leaders in the industry.
The hard work and team efforts of our employees have helped us to establish and maintain a reputation as
professionals in the construction industry.
MYSQL_CONNECT( "localhost");
mysql_select_db( "pikeind");
$area = "Crew";
$tablename = "Crew";
$query = "SELECT * FROM $tablename";
$mysql_result = mysql_query($query);
// get each row
WHILE($row = mysql_fetch_row($mysql_result))
{
//get columns
$id = $row[0];
$header = $row[1];
$text = $row[2];
$caption = $row[3];
$bin_data = $row[4];
$filename = $row[5];
$filesize = $row[6];
$filetype = $row[7];
//header
print ("");
print ("\n");
print ("\n");
print ("");
print ("\n");
print ("\n");
print ("$header\n");
print (" \n");
//text
print ("\n");
print ("$text");
print ("\n");
print (" | \n");
print (" \n");
print (" \n");
print (" | \n");
print (" \n");
//image
print ("");
print ("\n");
print (" \n");
//caption
print ("\n");
print ("$caption\n");
print (" \n");
print (" | ");
print (" ");
}
?>
|