mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 23:32:38 +00:00
add plans for members
This commit is contained in:
parent
85571e0c30
commit
04d49eb932
1 changed files with 53 additions and 0 deletions
53
members/plan.php
Normal file
53
members/plan.php
Normal file
|
@ -0,0 +1,53 @@
|
|||
<? // Preamble
|
||||
$pageName = "Developers - Update Plan";
|
||||
$focused = "home"; // Dock icon name to gets a border
|
||||
$need = 'auth';
|
||||
require("../parts/preamble.php"); // Load most of document
|
||||
?>
|
||||
<?
|
||||
if ($planItem) {
|
||||
need('sql');
|
||||
|
||||
$user = ucfirst($userInfo[u_username]) ;
|
||||
$newsItem = AddSlashes($newsItem);
|
||||
|
||||
$conn = mysql_connect (sqlHost, sqlUser, sqlPass);
|
||||
if ($conn) {
|
||||
$query = 'UPDATE devel_plans (p_date, p_news) VALUES (' .
|
||||
" NOW(), '$planItem')";
|
||||
$result = mysql_db_query (sqlDB, $query, $conn);
|
||||
if ($result) {
|
||||
$numRows = mysql_affected_rows ($conn);
|
||||
if ($numRows) {
|
||||
echo '<P>All is well... your plan has been updated';
|
||||
} else {
|
||||
echo '<P>Hmm... that\'s not right. An error occoured';
|
||||
}
|
||||
}
|
||||
mysql_close ($conn);
|
||||
} else {
|
||||
echo 'You suck, butthead.';
|
||||
}
|
||||
} else {
|
||||
tableBoxHeader(featureBgColor, tableHeadColor);
|
||||
tableTitle("Edit Plan", 1, tableHeadColor);
|
||||
|
||||
$date = strftime('%d %b %Y', time());
|
||||
$user = ucfirst($userInfo[u_username]);
|
||||
echo '<TR><TD><DL><DT><FONT SIZE=-1>Posted on ' . $date . ' by ' . $user . '</FONT></DT>' .
|
||||
' <DD> ';
|
||||
?>
|
||||
<FORM action="plan.php" method="post">
|
||||
<TEXTAREA name="newsItem" rows="25" cols="64"></TEXTAREA><BR>
|
||||
<INPUT align="center" type="submit" value="Post"></INPUT>
|
||||
</FORM>
|
||||
<? ' . </DD>' .
|
||||
'</DL></TD></TR>';
|
||||
tableBoxFooter();
|
||||
}
|
||||
?>
|
||||
<?
|
||||
?>
|
||||
<?
|
||||
require (siteHome ."/parts/postamble.php"); // Finish this sucker up
|
||||
?>
|
Loading…
Reference in a new issue