|
LESSON LEARNED /
Lessons have been learned from programs and policies that
did not achieve the desired result, or in some cases actually
exacerbated the problem. By framing "mistakes" as "lessons
learned" it would be easier to collect information
from organizations of what mistakes they have made and
what they have learned.
Areas Include:
$link = mysql_connect('localhost','web','ratpow');
$sql = "SELECT id, title, type, lessons FROM tigsm_yes.inititive ORDER BY title";
$sql_result = mysql_query($sql);
while ($row = mysql_fetch_array($sql_result)) {
$id = stripslashes($row["id"]);
$title = stripslashes($row["title"]);
$type = stripslashes($row["type"]);
$lessons = stripslashes($row["lessons"]);
echo " ";
echo "| ";
if ($type == "program") {
echo ?>
| ";
echo "| $lessons | ";
echo " ";
}
mysql_close($link);
?>
|