include("../new_header.inc"); ?> $link = mysql_connect('localhost','web','ratpow'); $myquery1 = "select webcounter from tigsm_yes.seqcounter WHERE pagename = 'gkrlessons'"; $result1 = mysql_query($myquery1); while($row1 = mysql_fetch_array($result1)) { $numcount = $row1{'webcounter'}; } $myq = "UPDATE tigsm_yes.seqcounter SET webcounter=LAST_INSERT_ID(webcounter+1) WHERE pagename = 'gkrlessons';"; $result2 = mysql_query($myq); $now1 = date("Y-m-d H:i:s"); $myq1 = "INSERT INTO tigsm_yes.userinfo(pagename,remoteaddr,remotehost, remoteport, remoteuser, browser, visittime) VALUES ('home','".$REMOTE_ADDR."','".$REMOTE_HOST."','".$REMOTE_PORT."','".$REMOTE_USER."','".$HTTP_USER_AGENT."','".$now1."');"; $result3 = mysql_query($myq1); mysql_close($link); ?>
|
|||||||||
|
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 = $row["id"]; $title = $row["title"]; $type = $row["type"]; $lessons = $row["lessons"]; echo "
"; } mysql_close($link); ?>
|
||||||||