|
|
|
echo date('F jS, Y',$resource[3])
?>
|
|
echo $resource[0].' by '. $resource[2];
?>
|
|
for ($i=0; $i<200; $i++) {
echo $resource[1][$i];
}
echo '...';
?>
|
|
$link = 'view_resource.php?id='.$resource[4];
echo '[read more]';
?>
|
|
|
|
|
|
In the tools section of this website, we are trying to share some ideas/frameworks which might help you understand your organization’s situation in respect to ENovation, analyze your requirements and formulate a plan/strategy for action.
|
|
Latest tool:
|
|
echo ''.$tool[1].' ';
?>
|
echo byteConvert(filesize('./tools/'.$tool[2]));
?>
|
|
echo '[more tools]';
?>
|
|
|
|
|
|
|
|
|
include "connect_forum.php";
$query4 = mysql_query("SELECT forum_last_post_id FROM phpbb_forums ORDER BY forum_id DESC")
or die(mysql_error());
$row = mysql_fetch_row($query4);
$last_post_id = $row[0];
$query5 = mysql_query ("SELECT poster_id, post_time, post_subject, post_text, topic_id FROM phpbb_posts WHERE post_id='$last_post_id'");
$row2 = mysql_fetch_row($query5);
$poster_id = $row2[0];
$post_time = $row2[1];
$post_subject = $row2[2];
$post_text = $row2[3];
$topic_id = $row2[4];
$query6 = mysql_query("SELECT username FROM phpbb_users WHERE user_id = '$poster_id'");
$row3 = mysql_fetch_row($query6);
$poster_username = $row3[0];
?>
|
Last post:
echo date('h:ia m/d/y',$post_time)
?>
|
|
by echo $poster_username;?>
|
|
echo $post_subject;
?>
|
|
for ($i=0; $i<200; $i++) {
echo $post_text[$i];
}
echo '...';
?>
|
|
echo '[read more]';
?>
|
|
|
|
|