









|
mysql_connect("localhost","olewnik","dbdis4me");
error_reporting(0);
?>
if($add)
{
$mysql_link=mysql_connect("localhost","olewnik","dbdis4me");
mysql_select_db("dbd", $mysql_link);
mysql("dbd", "insert into DBDref (Name, Comment) values ('$name', '$DBDtext')");
}
?>
Current Question for Debate
RESULTS
There are many references (books and papers) on the topic of decision making, and particularly in engineering design. In your opinion, what references should be required reading for any researcher in DBD? Please suggest a few, including a brief rationale for each.
$mysql_link=mysql_connect("localhost","olewnik","dbdis4me");
mysql_select_db("dbd", $mysql_link);
$query = "SELECT * FROM DBDref";
$mysql_result = mysql_query($query, $mysql_link);
while($row = mysql_fetch_row($mysql_result))
{
$ID = $row[0];
$name=$row[1];
$comment=$row[2];
$str_length=strlen($comment);
if($str_length > 0)
{
print(" ");
print("$name ");
print("$comment ");
}
}
?>
|
|