I will keep it simple for now then. Later on if I require such scalable features (being taken on for a client perhaps), then I will look into it further.
Thanks for your time!!
KillerSites Network
Posted 19 March 2012 - 02:29 PM
Posted 26 March 2012 - 03:35 PM
Posted 26 March 2012 - 05:13 PM
teke, on 26 March 2012 - 01:35 PM, said:
Posted 28 March 2012 - 02:53 PM
Posted 03 April 2012 - 10:53 AM
<?php
//create_cat.php
include 'connect.php';
include 'header.php';
include 'modules/bbcode.php';
/*
EDIT.PHP
Allows user to edit specific entry in database
*/
// creates the edit record form
// since this form is used multiple times in this file, I have made it a function that is easily reusable
function renderForm($id, $firstname, $error)
{
?>
<html>
<head>
<title>Edit Record</title>
</head>
<body>
<?php
// if there are any errors, display them
if ($error != '')
{
echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>';
}
?>
<form action="" method="post">
<input type="hidden" name="id" value="<?php echo $id; ?>"/>
<div>
<p><strong>ID:</strong> <?php echo $id; ?></p>
<strong>Content*</strong> <input type="text" name="firstname" value="<?php echo $firstname; ?>"/><br/>
<p>* Required</p>
<input type="submit" name="submit" value="Submit">
</div>
<a href="/settings.php">Back</a>
</form>
</body>
</html>
<?php
}
// connect to the database
// check if the form has been submitted. If it has, process the form and save it to the database
if (isset($_POST['submit']))
{
// confirm that the 'id' value is a valid integer before getting the form data
if (is_numeric($_POST['id']))
{
// get form data, making sure it is valid
$id = $_POST['post_id'];
$firstname = mysql_real_escape_string(htmlspecialchars($_POST['post_content']));
// check that firstname/lastname fields are both filled in
if ($firstname == '')
{
// generate error message
$error = 'ERROR: Please fill in all required fields!';
//error, display form
renderForm($id, $firstname, $error);
}
else
{
// save the data to the database
mysql_query("UPDATE
posts
SET
post_content='$firstname'
WHERE post_id='$id'")
or die(mysql_error());
// once saved, redirect back to the view page
header("Location: settings.php");
}
}
else
{
// if the 'id' isn't valid, display an error
echo 'Error!';
}
}
else
// if the form hasn't been submitted, get the data from the db and display the form
{
// get the 'id' value from the URL (if it exists), making sure that it is valid (checing that it is numeric/larger than 0)
if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0)
{
// query db
$id = $_GET['id'];
$result = mysql_query("SELECT * FROM posts WHERE post_id=$id")
or die(mysql_error());
$row = mysql_fetch_array($result);
// check that the 'id' matches up with a row in the databse
if($row)
{
// get data from db
$firstname = $row['post_content'];
// show form
renderForm($id, $firstname, '');
}
else
// if no match, display result
{
echo "No results!";
}
}
else
// if the 'id' in the URL isn't valid, or if there is no 'id' value, display an error
{
echo 'Error!';
}
}
include 'footer.php';
?><?php
//create_cat.php
include 'connect.php';
include 'header.php';
/*
NEW.PHP
Allows user to create a new entry in the database
*/
// creates the new record form
// since this form is used multiple times in this file, I have made it a function that is easily reusable
function renderForm($first, $last, $error)
{
?>
<html>
<head>
<title>New Record</title>
</head>
<body>
<?php
// if there are any errors, display them
if ($error != '')
{
echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>';
}
?>
<form action="" method="post">
<div>
<strong>Content: *</strong> <input type="textarea" name="firstname" value="<?php echo $first; ?>" /><br/>
<p>* required</p>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</body>
</html>
<?php
}
// check if the form has been submitted. If it has, start to process the form and save it to the database
if (isset($_POST['submit']))
{
// get form data, making sure it is valid
$firstname = mysql_real_escape_string(htmlspecialchars($_POST['post_content']));
// check to make sure both fields are entered
if ($firstname == '')
{
// generate error message
$error = 'ERROR: Please fill in all required fields!';
// if either field is blank, display the form again
renderForm($first, $last, $error);
}
else
{
// save the data to the database
mysql_query("INSERT posts SET post_content='$firstname'")
or die(mysql_error());
// once saved, redirect back to the view page
header("Location: settings.php");
}
}
else
// if the form hasn't been submitted, display the form
{
renderForm('','','');
}
include 'footer.php';
?>
Posted 10 April 2012 - 07:19 PM
Posted 10 April 2012 - 07:29 PM
Posted 10 April 2012 - 07:35 PM
Posted 10 April 2012 - 07:48 PM
Posted 11 April 2012 - 12:12 AM
Posted 11 April 2012 - 09:26 AM
Jeffro78, on 10 April 2012 - 10:12 PM, said:
Posted 12 April 2012 - 11:26 PM
Posted 13 April 2012 - 10:26 AM
Posted 13 April 2012 - 02:59 PM
Posted 20 April 2012 - 12:20 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
include("../include/session.php");
include("db.php");
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AzureDivinity's Website</title>
<link href="../../css/style1.css" rel="stylesheet" type="text/css">
<link href="../../css/style2.css" rel="stylesheet" type="text/css">
<link href="../../css/style3.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="../../slider/themes/default/default.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../slider/nivo-slider.css" type="text/css" media="screen" />
</head>
<body>
<div id="everything">
<div id="header">
<ul id="menu">
<li><a class="main" href="http://azuredivinity.com/"></a></li>
<li><a class="profile" href="http://azuredivinity.com/profile.php"></a></li>
<li><a class="cms" href="http://azuredivinity.com/forum/content.php"></a></li>
<li><a class="forum" href="http://azuredivinity.com/forum/forum.php"></a></li>
<li><a class="blog" href="http://azuredivinity.com/forum/blog.php"></a></li>
<li><a class="contact" href="http://azuredivinity.com/index.php?page=contact"></a></li>
<li><a class="login" href="http://azuredivinity.com/login/main.php"></a></li>
<li><a class="rotate" href="http://azuredivinity.com/#"></a></li>
<li><a class="coaching" href="http://azuredivinity.com/coaching/index.html"></a></li>
<li><a class="clanex" href="http://www.combatex.com/forum/index.php"></a></li>
</ul>
</div>
<div id="middle">
<div class="slider-wrapper theme-default">
<div class="ribbon">
</div>
<div id="slider" class="nivoSlider">
<img src="../../css/images/slider_images/img15.png" alt="" />
<img src="../../css/images/slider_images/img1.png" alt="" />
<img src="../../css/images/slider_images/img3.png" alt="" />
<img src="../../css/images/slider_images/img6.png" alt="" />
<img src="../../css/images/slider_images/img7.png" alt="" />
<img src="../../css/images/slider_images/img8.png" alt="" />
<img src="../../css/images/slider_images/img9.png" alt="" />
<img src="../../css/images/slider_images/img10.png" alt="" />
<img src="../../css/images/slider_images/img11.png" alt="" />
<img src="../../css/images/slider_images/img12.png" alt="" />
<img src="../../css/images/slider_images/img13.png" alt="" />
<img src="../../css/images/slider_images/img14.png" alt="" />
</div>
</div>
</div>
<script type="text/javascript" src="../../slider/scripts/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="../../slider/jquery.nivo.slider.pack.js"></script>
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
</script>
<br />
<br />
<br />
<div id="left_column">
<div class="left_break">
</div>
<div class="left">
<div class="left_nav_header">
</div>
<div class="post_body_nav">
<div id="navigation">
<a class="tbt" href="http://blacktowerclan.com/"></a>
<a class="scu" href="http://starcraftuniverse.org"></a>
<a class="combat" href="http://www.twitch.tv/combatex"></a>
<a class="clanwater" href="http://www.twitch.tv/clanwater"></a>
<a class="azure" href="http://www.justin.tv/azuredivinity"></a>
<a class="teammnm" href="http://www.twitch.tv/mnmsc2?"></a>
<a class="combatsite" href="http://www.combatex.com/" target="_blank"></a>
<a class="vile" href="http://www.twitch.tv/illusioncss" target="_blank"></a>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="TG4YRKN4S3NDY">
<input type="image" src="../css/images/buttons/donate2.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="footer">
</div>
</div>
<div class="left">
<div class="left_break">
</div>
<div class="left_header">
</div>
<div class="post_body_nav">
<br><p><img src="../../css/images/achievements/achieve_1.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_2.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_3.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_4.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_5.png" alt="About Me" align="center"/></p></br>
</div>
<div class="footer">
</div>
</div>
</div>
<div id="middle_column" class="two_column">
<div class="post">
<div class="header">
</div>
<div class="post_body">
<?
/**
* User not an administrator, redirect to main page
* automatically.
*/
if(!$session->isAdmin()){
printf("<script>location.href='main.php'</script>");
}
else{
/**
* Administrator is viewing page, so display all
* forms.
*/
?>
<h1>Admin Center</h1>
<font size="5" color="#ff0000">
<b>::::::::::::::::::::::::::::::::::::::::::::</b></font>
<font size="4">Logged in as <b><? echo $session->username; ?></b></font><br><br>
Back to [<a href="main.php">Main Page</a>]<br><br>
Add A [<a href="http://www.azuredivinity.com/index.php?p=add">New Entry</a>]<br><br>
<?
if($form->num_errors > 0){
echo "<font size=\"4\" color=\"#ff0000\">"
."!*** Error with request, please fix</font><br><br>";
}
?>
<?php
// number of results to show per page
$per_page = 6;
// figure out the total pages in the database
$result = mysql_query("SELECT * FROM tt_blog");
$total_results = mysql_num_rows($result);
$total_pages = ceil($total_results / $per_page);
// check if the 'page' variable is set in the URL (ex: view-paginated.php?page=1)
if (isset($_GET['page']) && is_numeric($_GET['page']))
{
$show_page = $_GET['page'];
// make sure the $show_page value is valid
if ($show_page > 0 && $show_page <= $total_pages)
{
$start = ($show_page -1) * $per_page;
$end = $start + $per_page;
}
else
{
// error - show first set of results
$start = 0;
$end = $per_page;
}
}
else
{
// if page isn't set, show first set of results
$start = 0;
$end = $per_page;
}
// display pagination
for ($i = 1; $i <= $total_pages; $i++)
{
echo "<a href='admin.php?page=$i'>$i</a> ";
}
echo "</p>";
// display data in table
echo "<table border='1' cellpadding='10'>";
echo "<tr> <th>ID</th> <th>Post Date</th> <th>Post Title</th> <th>Post Text</th> <th></th> <th></th></tr>";
// loop through results of database query, displaying them in the table
for ($i = $start; $i < $end; $i++)
{
// make sure that PHP doesn't try to show results that don't exist
if ($i == $total_results) { break; }
// echo out the contents of each row into a table
echo "<tr>";
echo '<td>' . mysql_result($result, $i, 'id') . '</td>';
echo '<td>' . mysql_result($result, $i, 'datetime') . '</td>';
echo '<td>' . mysql_result($result, $i, 'title') . '</td>';
echo '<td>' . mysql_result($result, $i, 'content') . '</td>';
echo '<td><a href="edit.php?id=' . mysql_result($result, $i, 'id') . '">Edit</a></td>';
echo '<td><a href="delete.php?id=' . mysql_result($result, $i, 'id') . '">Delete</a></td>';
echo "</tr>";
}
// close table>
echo "</table>";
// pagination
?>
<?
}
?>
</div>
<div class="postedby">
</div>
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
include("../include/sessions.php");
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AzureDivinity's Website</title>
<link href="../../css/style1.css" rel="stylesheet" type="text/css">
<link href="../../css/style2.css" rel="stylesheet" type="text/css">
<link href="../../css/style3.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="../../slider/themes/default/default.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../slider/nivo-slider.css" type="text/css" media="screen" />
</head>
<body>
<div id="everything">
<div id="header">
<ul id="menu">
<li><a class="main" href="http://azuredivinity.com/"></a></li>
<li><a class="profile" href="http://azuredivinity.com/profile.php"></a></li>
<li><a class="cms" href="http://azuredivinity.com/forum/content.php"></a></li>
<li><a class="forum" href="http://azuredivinity.com/forum/forum.php"></a></li>
<li><a class="blog" href="http://azuredivinity.com/forum/blog.php"></a></li>
<li><a class="contact" href="http://azuredivinity.com/index.php?page=contact"></a></li>
<li><a class="login" href="http://azuredivinity.com/login/main.php"></a></li>
<li><a class="rotate" href="http://azuredivinity.com/#"></a></li>
<li><a class="coaching" href="http://azuredivinity.com/coaching/index.html"></a></li>
<li><a class="clanex" href="http://www.combatex.com/forum/index.php"></a></li>
</ul>
</div>
<div id="middle">
<div class="slider-wrapper theme-default">
<div class="ribbon">
</div>
<div id="slider" class="nivoSlider">
<img src="../../css/images/slider_images/img15.png" alt="" />
<img src="../../css/images/slider_images/img1.png" alt="" />
<img src="../../css/images/slider_images/img3.png" alt="" />
<img src="../../css/images/slider_images/img6.png" alt="" />
<img src="../../css/images/slider_images/img7.png" alt="" />
<img src="../../css/images/slider_images/img8.png" alt="" />
<img src="../../css/images/slider_images/img9.png" alt="" />
<img src="../../css/images/slider_images/img10.png" alt="" />
<img src="../../css/images/slider_images/img11.png" alt="" />
<img src="../../css/images/slider_images/img12.png" alt="" />
<img src="../../css/images/slider_images/img13.png" alt="" />
<img src="../../css/images/slider_images/img14.png" alt="" />
</div>
</div>
</div>
<script type="text/javascript" src="../../slider/scripts/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="../../slider/jquery.nivo.slider.pack.js"></script>
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
</script>
<br />
<br />
<br />
<div id="left_column">
<div class="left_break">
</div>
<div class="left">
<div class="left_nav_header">
</div>
<div class="post_body_nav">
<div id="navigation">
<a class="tbt" href="http://blacktowerclan.com/"></a>
<a class="scu" href="http://starcraftuniverse.org"></a>
<a class="combat" href="http://www.twitch.tv/combatex"></a>
<a class="clanwater" href="http://www.twitch.tv/clanwater"></a>
<a class="azure" href="http://www.justin.tv/azuredivinity"></a>
<a class="teammnm" href="http://www.twitch.tv/mnmsc2?"></a>
<a class="combatsite" href="http://www.combatex.com/" target="_blank"></a>
<a class="vile" href="http://www.twitch.tv/illusioncss" target="_blank"></a>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="TG4YRKN4S3NDY">
<input type="image" src="../../css/images/buttons/donate2.png" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</div>
</div>
<div class="footer">
</div>
</div>
<div class="left">
<div class="left_break">
</div>
<div class="left_header">
</div>
<div class="post_body_nav">
<br><p><img src="../../css/images/achievements/achieve_1.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_2.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_3.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_4.png" alt="About Me" align="center"/></p></br>
<br><p><img src="../../css/images/achievements/achieve_5.png" alt="About Me" align="center"/></p></br>
</div>
<div class="footer">
</div>
</div>
</div>
<div id="middle_column" class="two_column">
<div class="post">
<div class="header">
</div>
<div class="post_body">
<?php
/*
EDIT.PHP
Allows user to edit specific entry in database
*/
// creates the edit record form
// since this form is used multiple times in this file, I have made it a function that is easily reusable
function renderForm($id, $datetime, $title, $content, $error)
{
?>
<?php
// if there are any errors, display them
if ($error != '')
{
echo '<div style="padding:4px; border:1px solid red; color:red;">'.$error.'</div>';
}
?>
<form action="" method="post">
<input type="hidden" name="id" value="<?php echo $id; ?>"/>
<div>
<p><strong>ID:</strong> <?php echo $id; ?></p>
<strong>Post Date: *</strong> <input type="text" name="datetime" value="<?php echo $datetime; ?>"/><br/>
<strong>Post Title: *</strong> <input type="text" name="title" value="<?php echo $title; ?>"/><br/>
<strong>Post Text: *</strong> <textarea type="text" name="content" value="<?php echo $content; ?>"></textarea><br/>
<p>* Required</p>
<input type="submit" name="submit" value="Submit">
</div>
</form>
</body>
</html>
<?php
}
// connect to the database
include('db.php');
// check if the form has been submitted. If it has, process the form and save it to the database
if (isset($_POST['submit']))
{
// confirm that the 'id' value is a valid integer before getting the form data
if (is_numeric($_POST['id']))
{
// get form data, making sure it is valid
$id = $_POST['id'];
$datetime = mysql_real_escape_string(htmlspecialchars($_POST['datetime']));
$title = mysql_real_escape_string(htmlspecialchars($_POST['title']));
$content = mysql_real_escape_string(htmlspecialchars($_POST['content']));
// check that datetime/title fields are both filled in
if ($datetime == '' || $title == '' || $content == '')
{
// generate error message
$error = 'ERROR: Please fill in all required fields!';
//error, display form
renderForm($id, $datetime, $title, $content, $error);
}
else
{
// save the data to the database
mysql_query("UPDATE tt_blog SET datetime='$datetime', title='$title', 'content=$content' WHERE id='$id'")
or die(mysql_error());
// once saved, redirect back to the view page
header("Location: admin.php");
}
}
else
{
// if the 'id' isn't valid, display an error
echo 'Error!';
}
}
else
// if the form hasn't been submitted, get the data from the db and display the form
{
// get the 'id' value from the URL (if it exists), making sure that it is valid (checing that it is numeric/larger than 0)
if (isset($_GET['id']) && is_numeric($_GET['id']) && $_GET['id'] > 0)
{
// query db
$id = $_GET['id'];
$result = mysql_query("SELECT * FROM tt_blog WHERE id=$id")
or die(mysql_error());
$row = mysql_fetch_array($result);
// check that the 'id' matches up with a row in the databse
if($row)
{
// get data from db
$datetime = $row['datetime'];
$title = $row['title'];
$content = $row['content'];
// show form
renderForm($id, $datetime, $title, $content, '');
}
else
// if no match, display result
{
echo "No results!";
}
}
else
// if the 'id' in the URL isn't valid, or if there is no 'id' value, display an error
{
echo 'Error!';
}
}
?>
</div>
<div class="postedby">
</div>
</div>
</div>
<div id="footer">
</div>
</div>
</body>
</html>
Posted 20 April 2012 - 12:46 PM
<textarea type="text" name="content" value="<?php echo $content; ?>"></textarea>
<textarea name="content"><?php echo $content; ?></textarea>
Posted 20 April 2012 - 05:07 PM
Posted 20 April 2012 - 05:32 PM
Posted 20 April 2012 - 06:22 PM
Posted 21 April 2012 - 09:38 AM
Posted 21 April 2012 - 05:36 PM
echo '<td>' . mysql_result($result, $i, 'content') . '</td>';
echo '<td>' . htmlspecialchars(mysql_result($result, $i, 'content')) . '</td>';
$content = mysql_real_escape_string(htmlspecialchars($_POST['content']));
$content = stripslashes(mysql_real_escape_string(htmlspecialchars($_POST['content'])));
Posted 21 April 2012 - 05:37 PM
Posted 21 April 2012 - 07:54 PM
Ben, on 21 April 2012 - 05:37 PM, said:
Posted 03 May 2012 - 11:42 PM
Posted 21 May 2012 - 02:02 AM