|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Links |
// create list of links
include("include/functions.php");
$link = ConnectDB();
$query = "SELECT name, web_url, image, description FROM project WHERE links=1";
$query .= " ORDER BY name";
$result = mysql_query($query)
or die("Invalid query: " . mysql_error());
// display the links now
$row_num = 0;
while ($row = mysql_fetch_object($result)) {
$image = $row->image;
$name = $row->name;
$web_url = web_link($row->web_url);
$description = $row->description;
?>
|
|
|
}
mysql_close($link);
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|