News System (cms) - .::DeadMan::. Paraphrased by alex1985

free web hosting
Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

News System (cms) - .::DeadMan::. Paraphrased by alex1985

alex1985
A really nice tutorial how to create a full news system, a good guide to follow.

The features are:

1. Admin Panel

a) Add News

cool.gif Edit News

c) Delete News

2. Comments

a) Add Comments

cool.gif Delete Comments

c) Edit Comments

3. BBCode

a) Bold Tags/Italics Tags

cool.gif Underlined Tags

c) Strike Through Tags

d) Link Tags

e) Image Tags

f) Code Tags

g) E-Mail Tags

At first, you need to create certain (2) tables which are news and comments for your system able to run:

CODE
CREATE TABLE `news` (
`id` int(10) NOT NULL auto_increment,
`title` varchar(50) NOT NULL default '',
`author` varchar(30) NOT NULL default '',
`content` text NOT NULL,
`postdate` varchar(100) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM;

CREATE TABLE `news_comments` (
`id` int(10) NOT NULL auto_increment,
`author` varchar(30) NOT NULL default '',
`content` text NOT NULL,
`postdate` varchar(100) NOT NULL default '',
`nid` varchar(30) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM;


Secondly, you need to create a file which is called "bbcode.php", I guess, you know for what, because the name of it sounds its function.

CODE
<?
function bbcode($content){ // our nice bbcode function
$content = nl2br(htmlspecialchars($content)); //  our message that we want to put the bbcode in

    $bbcode = array(  // The BBCode tags
       "'[b](.*?)[/b]'", // Bold Tag [b]Bold[/b]
       "'[i](.*?)[/i]'", // Italics Tag [i]Italics[/i]
       "'[u](.*?)[/u]'", // Underline Tag [u]Underlined[/u]
       "'[strike](.*?)[/strike]'", // Stroked Out Tag [strike]Strike[/strike]
       "'[img](.*?)[/img]'", // Image Tag
       "'[url=http://(.*?)](.*?)[/url]'", // Url Tag [url=http://yoursite.com]A website =D[/url]
       "'[url=http://(.*?)](.*?)[/url]'", // Another Url Tag [url]yoursite.com[url]
        );

      $html = array( // The HTML counter part of the tags
        "<strong>1</strong>", // Bold
        "<em>1</em>", // Italics
        "<u>1</u>", // Underlined
        "<strike>1</strike>", // Stroked out text
        "<a href='1' target='_BLANK'>2</a>", // Url 1 opens in a new window
        "<a href='1' target='_BLANK'>1</a>", // Url 2 opens in a new window
        "<img border='0' src='1'>", // Image
    
       );

      $content = preg_replace($bbcode, $html, $content); // replaces all BBCode tags with  their HTML counter parts
    return nl2br($content);
}

?>


Thirdly, we need to create a page that may display our news, which is "news.php":

CODE
<?php
ob_start(); // allows us to use cookies
include("config.php"); // includes the config file
include("bbcode.php"); // includes our bbcode file

$q = mysql_query("SELECT * FROM news ORDER BY id DESC"); // querys the database
if (mysql_num_rows($q) == "0") { // if there is nothing than we echo an error

    echo ("There is no news in the database!"); // opps nothing
}

while($r=mysql_fetch_array($q)){ // fetches array

    $id = $r['id']; // news id
    $title = $r['title']; // news title
    $author = $r['author']; // news author
    $postdate = $r['postdate']; // news date
    $content = bbcode($r['content']); // news content

    echo ("<tr> // displays our news
                <td><a href='news_comments.php?view=news&id=$id'>$title</a> Posted by <a href='/kurt/members.php?user=$author'>$author</a> At $postdate<br></td>
            </tr>
               <tr>
                <td>$content<br>[<a href='news_comments.php?view=addcomment&id=$id'>Add a comment</a>] [<a href='news_comments.php?view=news&id=$id'>View comments</a>]<br><br></td>
            </tr>");
}

if($logged[username] && $logged[level] ==5) echo ("[<a href='news_admin.php'>Administrative Panel</a>]"); // if the user is an admin display a link to the admin panel
if(!$logged[username]) echo ("[<a href='login.php'>Login</a>] [<a href='register.php'>Register</a>]"); // if the user is a guest display links to login or register
?>


Fourthly, we need to create a file named "news_comments.php" in order to display comments:

CODE
<?php
ob_start();
include("config.php");
if ($logged['username']){

switch($_GET['view']){
case 'news':

$id = $_GET['id'];
$select = "select * from news where id=$id";
$select2 = "select * from news_comments where nid=$id ORDER BY id DESC";

$getnews = mysql_query($select)
or die(mysql_error());
$getcomments = mysql_query($select2);

if (mysql_num_rows($getnews) == "0") {

echo 'Unable to find the article in our database';
exit();
}
$row = mysql_fetch_array($getnews)
or die(mysql_error());

$nid = $row['id'];
$ntitle = $row['title'];
$ncontent = $row['content'];
$nauthor = $row['author'];
$postdate = $row['postdate'];

    echo ("<tr>
                <td>$ntitle Posted by <a href='members.php?user=$nauthor'>$nauthor</a> At $postdate<br></td>
            </tr>
               <tr>
                <td>$ncontent<br><br>Comments:<br></td>
            </tr>");
if (mysql_num_rows($getcomments) == "0") {
echo("There are no comments!<br>[<a href='news_comments.php?view=addcomment&id=$id'>Add a comment</a>]");
}
if($logged[username] && $logged[level] ==5)
while($rowc= mysql_fetch_array($getcomments)){

$cauthor = $rowc['author'];
$ccomment = $rowc['content'];
$cdate = $rowc['postdate'];
$cid = $rowc['id'];


    echo ("<tr>
                <td>Comment Posted by [<a href="news_admin.php?view=editcomment&id=$cid">Edit</a>] [<a href="news_admin.php?view=deletecomment&id=$cid">Delete</a>]<br></td>
            </tr>
               <tr>
                <td>$ccomment<br><br></td>
            </tr>");    
}
while($rowc= mysql_fetch_array($getcomments)){

$cauthor = $rowc['author'];
$ccomment = $rowc['content'];
$cdate = $rowc['postdate'];

    echo ("<tr>
                <td>Comment Posted by <a href='members.php?user=$nauthor'>$cauthor</a> At $cdate<br></td>
            </tr>
               <tr>
                <td>$ccomment<br><br></td>
            </tr>");
}
echo("[<a href='news_comments.php?view=addcomment&id=$id'>Add a comment</a>]");
break;
case 'addcomment':
ob_start();
include("config.php");

$id = $_GET['id'];
if(isset($_POST['add_comment'])) {

$author = $logged['username'];
$postdate = date('g:i A, l F j');
$comment = $_POST['comment'];
$nid = $_GET['id'];

$sql = "INSERT INTO news_comments ( `author` , `postdate`, `content`, `nid`) VALUES ('$author', '$postdate', '$comment', '$nid')";
$addblog = mysql_query($sql)
or die(mysql_error());

header("Location: news.php");
}
else
{
echo ("<form method='post' name='addcomment'>
<tr>
    <td height='20'>Comment:</td>
</tr>
<tr>
    <td><br><textarea rows='5' cols='35' name='comment'>Type your comment here!</textarea><br> <input type='submit' name='add_comment' value='Submit'></td>
</tr>
</form>");
}
}
if (!isset($_GET['id']))
header("Location:news.php");
}else{
exit('Hey! you need to [<a href='http://www.utsagamingservers.com/kurt/cpanel?view=login'>login</a>] first!');
}
?>


Fifthly, "news_admin.php" will be used for administration purposes:

CODE
<?
ob_start();
include('config.php');
if ($logged['level'] == '5') {

switch($_GET['view']) {
case "addnews" :
include("config.php");
if(isset($_POST['add_news'])) {

$title=$_POST['title'];
$author=$logged['username'];
$postdate=date("g:i A, l F j");
$content=$_POST['content'];

$sql = "INSERT INTO news (title, author, postdate, content) VALUES ('$title', '$author', '$postdate', '$content')";
$addnews = mysql_query($sql)
or die(mysql_error());
header("Location:news.php");
}
else
{
echo ("
<form method='post' name='addnews'>
<tr>
    <td height='20'>Article Title:<br></td>
</tr>
<tr>
    <td> <input class='content_box' Type='text' name='title' value='Article's Title'></td>
</tr>
<tr>
    <td height='20'><br>News Article:</td>
</tr>
<tr>
    <td><br><textarea rows='15' cols='95' name='content'>Type your article here!</textarea><br> <input type='submit' name='add_news' value='Submit'></td>
</tr>
</form>");
}
break;
case "editnews" :
include("config.php");

$id = $_GET['id'];
if(!$_GET['id'])
{
header("Location:news_admin.php");
}
$select = mysql_query("select * from news where id=$id");
if (mysql_num_rows($select) == "0") {
echo 'Unable to find the news article in the database!';
exit();
}
if(isset($_POST['edit_news'])) {

$title=$_POST['title'];
$content=$_POST['content'];

$sql = mysql_query("update news set title = '$title', content = '$content' where id = '$id'");
echo ("<meta http-equiv='Refresh' content='1; URL=news.php'/>Your article has been updated! You will now be redirected");
exit;
}
else
{
$get = mysql_query("select * from news where id=$id");
$get = mysql_fetch_array($get);
echo ("
<form method='post' name='editnews'>
<tr>
    <td height='20'>Article Title:<br></td>
</tr>
<tr>
    <td> <input Type='text' name='title' value='$get[title]'></td>
</tr>
<tr>
    <td height='20'><br>News Article:</td>
</tr>
<tr>
    <td><br><textarea rows='15' cols='95' name='content'>$get[content]</textarea><br> <input type='submit' name='edit_news' value='Submit'></td>
</tr>
</form>");
}
break;
case "deletenews" :
include("config.php");

$id = $_GET['id'];
if(!$_GET['id'])
{
header("Location:news_admin.php");
}
$select = mysql_query("select * from news where id=$id");
if (mysql_num_rows($select) == "0") {
echo 'Unable to find the news article in the database!';
exit();
}
$delete = mysql_query("DELETE FROM news WHERE id = '$id'") or die(mysql_error());
$delete2 = mysql_query("DELETE FROM news_comments WHERE nid = '$id'") or die(mysql_error());
echo("<meta http-equiv='Refresh' content='1; URL=news.php'/>Your article has been deleted! You will now be redirected");
break;
case "deletecommet" :
include("config.php");

$id = $_GET['id'];
if(!$_GET['id'])
{
header("Location:news_admin.php");
}
$select = mysql_query("select * from news_comments where id=$id");
if (mysql_num_rows($select) == "0") {
echo 'Unable to find the comment in the database!';
exit();
}
$delete = mysql_query("DELETE FROM `news_comments` WHERE id = '$id'") or die(mysql_error());
echo("<meta http-equiv='Refresh' content='1; URL=news.php'/>The comment has been deleted! You will now be redirected");
break;
case "editcomment" :
include("config.php");

$id = $_GET['id'];
if(!$_GET['id'])
{
header("Location:news_admin.php");
}
$select = mysql_query("select * from news_comments where id=$id");
if (mysql_num_rows($select) == "0") {
echo 'Unable to find the comment in the database!';
exit();
}
if(isset($_POST['edit_comment'])) {

$comment=$_POST['comment'];

$sql = mysql_query("update news_comments set content = '$content' where id = '$id'");
echo ("<meta http-equiv='Refresh' content='1; URL=news.php'/>The comment has been updated! You will now be redirected");
exit;
}
else
{
$get = mysql_query("select * from news_comments where id=$id");
$get = mysql_fetch_array($get);
echo ("
<form method='post' name='editcomment'>
<tr>
    <td height='20'>Comment:</td>
</tr>
<tr>
    <td><br><textarea rows='15' cols='95' name='comment'>$get[content]</textarea><br> <input type='submit' name='edit_comment' value='Submit'></td>
</tr>
</form>");
}
break;
default:
echo "Welcome to your news admin area $logged[username]! [<a href='news_admin.php?view=addnews'>Add News</a>]<br><br>";

$q = mysql_query("SELECT * FROM news ORDER BY id DESC");
if (mysql_num_rows($q) == "0") {
    echo ("There is no news in the database! [<a href='news_admin.php?view=addnews'>Add News</a>]");
}
while($r=mysql_fetch_array($q)){

    $id = $r['id'];
    $title = $r['title'];
    $author = $r['author'];
    $postdate = $r['postdate'];

    echo ("<tr>
                <td><a href='news_comments.php?view=news&id=$id'>$title</a> Posted by <a href='members.php?user=$author'>$author</a> At $postdate [<a href='news_admin.php?view=editnews&id=$id'>Edit</a>] [<a href='news_admin.php?view=deletenews&id=$id'>Delete</a>]<br></td>
           </tr>");
}
break;
}
}else{
exit('Hey! where do you think your going?');
}
?>


Lastly, you need create the configuration file that will access your database settings ("config.php"):

CODE
<?php
$host = "localhost";
$dbuser = "username";
$dbpassword = "password";
$dbname = "table/database";
$connection = mysql_connect($host, $dbuser, $password) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
?>


That's it. Any replies to improve it are welcomed!!!

 

 

 


Reply

BuBBaG
Nice tutorial, I'm going to try it out now. You should close your last code tag though. I'll repost when I finish.

Reply

Forbez
Love it, seriously do. You include everything needed here. Perhaps add some suggestive css styles to make things look all pretty biggrin.gif

Reply

samlockart
This is very cool, I really would love to learn PHP and CSS in full. But I don't have the time! But this tutorial is great, but I use Wordpress so I don't exactly need it, but I could make mods to Wordpress now, using some of this knowledge!

Thanks, Sam.

Reply

delivi
Nice tutorial, great for learning PHP. but for serious use I'd suggest using a News Management System like
* CutePHP
* EBA-News
* Fusion News
* PhpCow (Paid)
* Absolute Engine

or you can use Wordpress for publishing news like http://blog.omio.com/ or http://chinesemedicinenews.com/

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : news, system, cms, deadman, paraphrased, alex1985

  1. How To Remember Complex Passwords
    Use the BEST password system ever! (0)
  2. Suggestions For Version 3 Of The Credit System
    (17)
    Although its been a long time since it was first announced that a version 3 of the credit system was
    announced to various people. This topic gave me a great idea and a reason for this topic . That
    is what would you like to see in the version 3 of the credit system, let it be updates to current
    features or new ideas post them here and give details as to why you want this change or to make an
    update to the credit system. Not to take from saitunes topic about this, but sending an email or a
    pm that persom is about to hit 0 credits is a great idea and I would say that wh....
  3. Virtual Pc 7 For Mac
    does anyone know how to install a operating system on it. im stuck :( (10)
    Hey Does anyone use Mac G5 here? I have a Mac G5 with leopard installed. Ive recently installed
    Virtual Pc 7 i followed the instructions. And it told me to insert a disc and then choose the disc
    type and click capture disc if it isnt already captured automatically. However it wont work for me
    because the option to press capture disc is greyed out. If it doesnt let me click on it then how am
    i suppose to load it. And it says any windows is compatible. but if i had service pack 2 would it
    matter? I don't know. it doesnt seem to be working. Do you know which operating ....
  4. Georgia In State Of War
    its days in the news no one is reporting it here weee (13)
    Russia against georgia a expart of ussr will others join too? (balkan union?) World War 3....
  5. Its's Official Microsoft Is Done With The Windows Operating System
    (12)
    Wow and I thought this one website was joking around that Microsoft plans to do one more Windows
    Operating. I don't know if Windows 7 will be the last one or not but the project goes by the
    code name Midori and it is based on the Cloud computing concept, which by the way Dell is trying to
    copyright this name for. All I know about cloud computer is that it will be internet based
    operating system meaning that buying CD's based software could end. Heck we are already seeing
    it in which yo ucan download full license software without hte use of a CD (legally). Rig....
  6. Browse System Files In The Browser...
    (2)
    Hi all Trap 17 people... I am not sure if you are already aware of this fine piece of information,
    But definitely a must know feature... Browsing your system files in your browser. For more visit the
    below link http://varalu.blogspot.com/2008/07/browsin...in-firefox.html You can use this feature
    to do so many stuffs... pretty much useful for addon developers. /smile.gif"
    style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
  7. Full Cms System [php]
    Really Good Guide to Follow. (4)
    This tutorial will teach you how to make a full news cms, this tutorial is quite long and don't
    complain about spelling mistakes! QUOTE Features: Admin Panel - Add News - Edit News -
    Delete News Comments - Add Comments - Delete Comments - Edit Comments BBCode - Bold Tags- Italics
    Tags - Underlined Tags - Strike Through Tags - Link Tags - Image Tags - Code Tags - E-Mail Tags
    To start off we need to create our mysql for our news cms. CODE CREATE TABLE `news`
    ( `id` int(10) NOT NULL auto_increment, `title` varchar&#....
  8. Postage Costs Problem For My Website
    Ideas for postage system needed (7)
    Hi all, I have a problem with my wife and the postman..........no, I didn't mean to
    say that, I mean I have a problem with how to work out the best way of charging my customers a fair
    postage. Here is the problem; on my website I sell books and our wonderful happy chappies at the
    Royal Mail have decided that not only have we got to weigh the book we now have to measure the
    damned thing as well! This has led to a complete restructuring and complication of the postage
    prices. To make this short I will have to illustrate this the best way I know how....
  9. Stupid Credit System
    (10)
    Why does this site has a stupid credit system that you only get 0.7 credit a word or is it even
    less. WTF is this.....
  10. Microsoft Vs. Macintosh
    Which operation system is the best (26)
    Now that we all know Microsoft is comming out with a new windows soon. It's called Windows 7.
    Now after reading an article about that comming out, i got a little upset. For one in the last
    sentece that i read, microsoft says We are trying to create an operating system that can make you
    stop dreaming about OS (Operating System) X or Linux. Well for all of that don't know what OS X
    is, it's Macintosh's Operating system. Last time i knew was that MAC has created an
    operating system that runs off of the same hardware as Microsoft Windows does. The hardware th....
  11. Is The Database System Gone Again? [resolved]
    Errors on PHPMyAdmin again (12)
    I wonder if there is a problem with the PHPMyAdmin system again? When trying to get into it, I once
    again get the following: QUOTE Warning: session_write_close() : SQLite: session write query
    failed: database is full in /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42
    Warning: session_write_close() : Failed to write session data (sqlite). Please verify that the
    current setting of session.save_path is correct
    (/var/cpanel/userhomes/cpanelphpmyadmin/sessions/phpsess.sdb) in
    /usr/local/cpanel/base/3rdparty/phpMyAdmin/index.php on line 42 Warning: Ca....
  12. Yankees News
    all yankees news (12)
    From now on i will be posting all New York Yankees news here. You can read more of my work and
    chat or post in my forums at thebronxbombersblog.com 7/6 Johnny Damon will by headed
    to the disabled list for the first time in his career due to a sprained AC joint in his left
    shoulder. Damon was in such bad pain that he needed help to put his shirt on, and could barely slip
    his shoes on. Damon said it would likely be 10 days before he would start throwing, and wouldnt be
    back until after the break. He is expected to go on the DL this evening. Brian Cashman....
  13. Latest Nba News Thread!
    (2)
    Alright, heres how it goes. Anyone who gets any NBA news this offseason post it here! Easy
    enough? I'll start the dominoes flowin'! ------------------------------------
    BARON DAVIS HAS AGREED TO SIGN IN PRINCIPLE WITH THE LOS ANGELES CLIPPERS! If the Clippers
    resign Elton Brand and get one or two other pieces, they can become a good team! LAKERS
    BEGIN TALKS WITH JOHN BARRY AND JAMES POSEY! The Lakers have talked with representatives of
    Boston small forward James Posey and veteran San Antonio sharpshooter Brent Barry to ga....
  14. Finally Some Good News
    Well deserved! (6)
    Finally after everything that has been bad for me the last few months I have some good news to
    share. Its been A while So it is very good and exciteing news for me. My brother called and told me
    I am finally gonna be an auntie!! Wooohoooo I am soo excited I have been waiting for years,
    I have made him an uncle four times over! lol Anyway it was some very good news just what I
    needed after how the last few months have went with loosing mom and moving cross country to get away
    from husband. Finally something to look forward to.....
  15. Regarding The New Rating System
    (3)
    Alright, I love the new rating system as you can tell how much I've been using it, but there are
    a few little things about it do annoy me. I've waited up until now to share it just because I
    thought it was in beta or something and was going to be changed, but I think I'll post my
    opinions now. First of all I'll talk about having your icon next to your name: People with
    names as long as mine, it goes onto the next line, and when you mouse over, it goes back up to the
    previous line. It is extremely annoying. And then when I try to click on it to se....
  16. Blood Grouping System
    Important blood grouping system of human and non-human (2)
    RBC (red blood cells) is an important element of blood. There are many antigenic substances present
    in the surface of RBC. Depending upon the presence or absence of inherited antigenic substances on
    the surface of RBC, blood may be classified in different groups; these groups are called Blood Group
    or Blood Type. Other then human, animals and bacteria have cell surface antigens and they have also
    blood grouping, but their blood groups are quite different. Human have 29 recognized blood group
    system (recognized by International Society of Blood Transfusion, ISBT). The po....
  17. I Have 30 System In My Network
    I want my network to become slow what I need to do (9)
    Hi I have 30 system in my network I want my network to become slow what I need to do can any one
    tell me even if there try to browes like yahoo, hotmail, gmail, etc.the pages shoud not open any
    pages My network is 100mbps And my internet speed is 1mbps I don’t have any router only
    unmanaged switch ....
  18. Credit System V2.0 Online
    Free Web Hosting Credit System v2 now online! (21)
    Dear Members, I am pleased to announce that I have finished coding Credit System V2.0 and its now
    online for members to use. Instead of the old URL used for managing your free web hosting account
    (http://www.trap17.com/process), You shall now be using :- http://www.trap17.com/manage (Credit
    System v2.0 Url) The new version is :- More secure. More reliable. Easily Upgradable and employs
    Module system. Has a Much better look. Central Login. Ajax Powered. Has a Log System. Good
    number of Bugs fixes Please use it and kindly report any further suggestions, comme....
  19. Ubuntu Linux As Free Operating System Alternative
    linux operating system (47)
    About three years ago I decided to learn how to use Linux and after a lot of posts on a forum I
    tried Ubuntu Linux as it was recommended as a good first Linux distro. Ubuntu is not the easiest
    Linux distro to use but with its unmatched forum community support it is one of the easiest to learn
    to use. One of the problems with learning Linux is that a lot of users have an attitude that Linux
    should be a free Windows knock off which it is not. Ubuntu is build on a Linix core or kernel and is
    a different Open Source and free as in to use operating system. This brings us to t....
  20. What's Your First System?
    (89)
    If I had to say my very first game system was it had to be the Nintendo 64. It was christmas and
    when I was little kid and opened it I was so excited to play mario 64 I played it everyday it was
    so, fun! Then mario party came out..I started to play it wasn't bad I just love the felling
    of playing it and now a days I still go with nintendo I have a wii and DS I would never go to
    another company because mario was the game I was always good at.. /wink.gif"
    style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" />....
  21. Innovative Login System
    A new way to login to a website (18)
    Hi, I came across this website www.planmylifestyle.com which offers an innovative login system. In
    the traditional login system, a user is asked to enter a username and password besides many other
    personal information. In this website, to register the site creates an ID file that the user can
    download to the local hard drive. After registration, to login to the website, the user has to
    simply upload the registered ID file (browser and select ID file from local hard drive) and click on
    the Login Button. The user is then taken to the website which seems to be a searc....
  22. System Does Not Detect Dvd/cdrom Drive
    (21)
    so i came home from school and my brother told me that my mom's laptop doesn't detect the
    dvd/cd rom drive (the drive icon doesn't show up in My Computer). he told me that the drive
    doesn't even open up (meaning he can't put any cd there). i thought he was just joking so i
    just shrugged it off. that was until i checked the laptop myself. he was right. the drive is not
    detected and the icon doesn't show up in the My Computer window. when i checked the drive, the
    drive light was on (just on, not blinking or anything). i tried pushing the open drive ....
  23. Get 30 Gb Email For Free
    let us talk about , email system for huge data ! (31)
    Friends here we are talking about largest email, free System http://www.30gigs.com this one is
    good and can handel many file at a time. plz let me know any one having this type of information
    ! Also for small user www.walla.com is good one....
  24. School's Blocking System.
    Its not the smartest of things (28)
    The blocking system at school for blocking websites is stupid. It blocks pretty much any website you
    go to. If you go to school what is the blocking system like there? By the way I am posting this of a
    school computer /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif"
    />....
  25. Game Maker
    Game Creation System (15)
    Always wanted to make games? Check out Game Maker . It's free and you can do so much with it.
    "Have you ever wanted to be able to design computer games, but didn't want to spend countless
    hours learning how to become a programmer? Then you've come to the right place. Game Maker is a
    program that allows you to make exciting computer games, without the need to write a single line of
    code. Making games with Game Maker is a lot of fun. Using easy to learn drag-and-drop actions, you
    can create professional looking games within very little time. You can make gam....
  26. 5.1 Sound System Problems
    Need help... (8)
    I have a 5.1 Sound System. It works great in 2 channels but when I switch to 5.1 the subwoofer
    ain't working. My motherboard has a nvidia 4 ultra chipset so it supports 5.1 configuration.
    Also in nvidia mixer when I use sound test everything is great and I can hear the subwooofer working
    as is should. But when I want to watch a movie or listen to music the subwoofer is as good as dead.
    Can somebody help me? ....
  27. Install Two Anti-virus Software In 1 System
    Is it ok? (36)
    I found out that AVG Free version isn't eliminating even trojan viruses. I only have this free
    version from protecting my system. Is it okay to install one more anti-virus software on top of this
    AVG Free version which is already installed and updated to the latest version? I have the option of
    installing Norton Anti-virus 2005. Will it cause any problem since the two softwares may use the
    same source from the computer, if I install this one? Do you recommend that I should uninstall
    first the existing software and install the new one? Will Norton Anti-virus 2005 ....
  28. Complete Login System
    With PHP + MYSQL (57)
    Its an complete login sistem made and tested by me and I think itwill be very usefull for people who
    are tryn to learn PHP. First, let's make register.php: CODE <?
    include("conn.php"); // create a file with all the database connections
    if($do_register){ // if the submit button were clicked if((!$name)
    || (!$email) || (!$age) || (!$login) ||
    (!$password) || (!$password2)){ print "You can't let
    any fields in blank....
  29. What's Your Favorite Game System - Console
    select one from each poll (180)
    i'm a computer game fan. it's expensive but more useful. it can be use for many purpose for
    your study and entertainment. much easier to use and most common to more people.....
  30. "gamer Buys $26,500 Virtual Land" (from Bbc News)
    (37)
    You gotta read this at http://news.bbc.co.uk/1/hi/technology/4104731.stm . I had never heard of
    "Project Entropia". How can someone pay $26,500 on something that doesn't even exist? Okay,
    he plans to profit from other people who are paying for something - again - that doesn't even
    exist! I say those people should be the first ones to be put into the Matrix when the machines
    revolt. This world is going f**king crazy. I feel like an old man, living in the past, 'cause
    I can't understand people like this kid. Coming to think that this is what th....

    1. Looking for news, system, cms, deadman, paraphrased, alex1985

Searching Video's for news, system, cms, deadman, paraphrased, alex1985
Similar
How To
Remember
Complex
Passwords -
Use the BEST
password
system
ever!
Suggestions
For Version
3 Of The
Credit
System
Virtual Pc 7
For Mac -
does anyone
know how to
install a
operating
system on
it. im stuck
:(
Georgia In
State Of War
- its days
in the news
no one is
reporting it
here weee
Its's
Official
Microsoft Is
Done With
The Windows
Operating
System
Browse
System Files
In The
Browser...
Full Cms
System [php]
- Really
Good Guide
to Follow.
Postage
Costs
Problem For
My Website -
Ideas for
postage
system
needed
Stupid
Credit
System
Microsoft
Vs.
Macintosh -
Which
operation
system is
the best
Is The
Database
System Gone
Again?
[resolved] -
Errors on
PHPMyAdmin
again
Yankees News
- all
yankees news
Latest Nba
News
Thread!
Finally Some
Good News -
Well
deserved!
;
Regarding
The New
Rating
System
Blood
Grouping
System -
Important
blood
grouping
system of
human and
non-human
I Have 30
System In My
Network - I
want my
network to
become slow
what I need
to do
Credit
System V2.0
Online -
Free Web
Hosting
Credit
System v2
now
online!
Ubuntu Linux
As Free
Operating
System
Alternative
- linux
operating
system
What's
Your First
System?
Innovative
Login System
- A new way
to login to
a website
System Does
Not Detect
Dvd/cdrom
Drive
Get 30 Gb
Email For
Free - let
us talk
about ,
email system
for huge
data !
School's
Blocking
System. -
Its not the
smartest of
things
Game Maker -
Game
Creation
System
5.1 Sound
System
Problems -
Need help...
Install Two
Anti-virus
Software In
1 System -
Is it ok?
Complete
Login System
- With PHP +
MYSQL
What's
Your
Favorite
Game System
- Console -
select one
from each
poll
"gamer
Buys
$26,500
Virtual
Land"
(from Bbc
News)
advertisement



News System (cms) - .::DeadMan::. Paraphrased by alex1985



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE