Full Cms System [php] - Really Good Guide to Follow.

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

Full Cms System [php] - Really Good Guide to Follow.

alex1985
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(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;


This will create 2 tables, 1 table for news and one for news comments! The next part of the tutorial will show you have to create the BBCode file, if you wish to learn how to make your own read my tutorial here!

bbcode.php

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);
}

?>


Save the code above as bbcode.php and remember to read the comments so you can learn!

Ok so now we need a page to display our news, read the comments so you know what?s going on!

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
?>


Save the code above as news.php, and remember to read the comments so you can learn.

Now we are going to make a file to display the news comments, remember to read the comments!

news_comments.php

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!');
}
?>


Save the above code as news_comments.php and read the comments!

Now for the admin panel!

news_admin.php

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?');
}
?>


Save the above code as news_admin.php and read the comments!

And that's all folks!

Enjoy! smile.gif

 

 

 


Reply

jlhaslip
The configuration file is called several times, but you have not defined it in the tutorial.
Also, do you have a Demo site for this script? Someplace we could check it out?

Also, check the URL BBcode and html codes you list above. They appear to be the same code, but the comments suggest they are to output differently.

It looks like a decent script. Congratulations on it. I'll add a DB and check it out further in the next little while.

Reply

alex1985
OK. Let me know, if you did some good changes to it. Send some message to my PM, because notifications sometimes do not arrive at my email!

Reply

jlhaslip
Can you show us the Config file, please?

Reply

alex1985
I do apologize, I think I forgot to post it over here in the beginning of this topic.

Here, he is:

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


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:

Recent Queries:-
  1. php cms tutor - 10.25 hr back. (1)
Similar Topics

Keywords : full, cms, system, php, guide, follow,

  1. Free Full Version Screensaver Maker
    (2)
  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. 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....
  5. Quickstart Guide To Photoshop Cs3 Review
    (0)
    Just like the other Visual Quickstart Guides, this book goes over the basics for Photoshop CS3, and
    teaches you how to use Photoshop and give you a basic understanding on how Photoshop works as well.
    Very easy to understand as they give these mini tutorials in each section that they cover, such as
    filters, brushes, layers, layer effects and gradients to name a few. This is a good book to learn
    the beginnings on how to use Photoshop, but once you understand the basic concepts from this book
    you will be able to move on to other books that go into more detail in the sec....
  6. Html, Xhtml, And Css, Sixth Edition (visual Quickstart Guide) Review
    (0)
    HTML, XHTML & CSS then this book is a must as this book will teach you how to build basic websites
    and learn what each tag does and how and where to use it. When you finish this book you will have
    saved yourself a whole bunch of time trying to learn from tutorials and other websites as you will
    be able to build a fully functional website in no time. Also what is best with this book as it
    comes with a companion website in which you can download all the mini tutorials that this book as to
    offer so you can see what their examples look like and learn from how the coding is....
  7. 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" />....
  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. Full Web Building Tutorials
    finding the sites that help allot with webdesign (3)
    I have been using the site http://www.w3schools.com/ for quit some time now, and i really really
    like it it helps allot if your a beginner and has allot to offer if you have some webdesign
    knowledge. At W3Schools you will find all the Web-building tutorials you need, from basic HTML and
    XHTML to advanced XML, SQL, Database, Multimedia and WAP W3 publishes a series of tutorials, though
    most web developers are unaware of it. Mainly, though, W3C's site houses a collection of
    proposals, drafts, and Recommendations, written by geeks for geeks. And when I say geeks, I d....
  13. 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....
  14. 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 ....
  15. 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....
  16. 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....
  17. Runescape 2 Private Server: Code/guide 1
    Creating a wilderness training zone. (11)
    Purpose: To make a cool training area in the wild. Difficulty: 1-3 Classes Modified:
    Client.java, shop.cfg, autospawn.cfg, npchandler, item2.java, shop.cfg Assumed Knowledge:
    Copy/paste, basic knowledge of cases, and how to search. Credits: 10% fedexer(global object tut),
    10% to my friend for teaching me how to make monsters drop random things, 80% me for the idea, and
    comming up with it. REQUIREMENTS: Make sure that your server can use herblore, mining,
    woodcutting, theiving, and prayer. You must also have fedexer's global objects code. Other
    Thi....
  18. Runescape 2 Private Server Guide: Part 2
    No-ip setup (22)
    Overview: In part 2 i will describe how to set up no-ip. no-ip is a simple way of hosting a
    private server and it is most commonly used. if this does not work, there is another way i will tell
    about in part 3. part 2 and 3 are short, yet effective guides that are aimed at helping you! If
    you are not sure if it is working, it is probably because you have not read part 4: Port Forwarding
    Chapters: Chapter 1: What is No-ip? Chapter 2: Initial Setup Chapter 2 Section A:
    Creating an account Chapter 2 Section B: The DUC Chapter 3: Config Chapter....
  19. 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" />....
  20. 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....
  21. 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 ....
  22. 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....
  23. Have Diferences Of Performance Form Ps2 Full Console To Mini-ps2?
    (8)
    Hi. Please if anybody test a mini-ps2. Have diferences of performance form PS2 full console to
    mini-ps2? thanks.....
  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. How To Create Virtual Drives
    A complete guide on how to create virtual drives (20)
    I'm planning to format my computer tonight, and I need some sort of reference about this when I
    get back. What is a virtual drive? A virtual drive is a shortcut to a folder hidden deep inside
    Windows. Instead of having an icon for the shortcut (virtual drive), you will see a drive icon with
    a letter that you chose when you go to My Computer after you create the drive. After completing this
    tutorial, you will be able to turn a long path
    (C:\directory\directory\more\directory\oh\my\gosh\this\
    is\a\long\direc....
  29. 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....
  30. 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.....

    1. Looking for full, cms, system, php, guide, follow,

Searching Video's for full, cms, system, php, guide, follow,
Similar
Free Full
Version
Screensaver
Maker
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
:(
Its's
Official
Microsoft Is
Done With
The Windows
Operating
System
Quickstart
Guide To
Photoshop
Cs3 Review
Html, Xhtml,
And Css,
Sixth
Edition
(visual
Quickstart
Guide)
Review
Browse
System Files
In The
Browser...
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
Full Web
Building
Tutorials -
finding the
sites that
help allot
with
webdesign
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
Runescape 2
Private
Server:
Code/guide 1
- Creating a
wilderness
training
zone.
Runescape 2
Private
Server
Guide: Part
2 - No-ip
setup
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 !
Have
Diferences
Of
Performance
Form Ps2
Full Console
To Mini-ps2?
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?
How To
Create
Virtual
Drives - A
complete
guide on how
to create
virtual
drives
Complete
Login System
- With PHP +
MYSQL
What's
Your
Favorite
Game System
- Console -
select one
from each
poll
advertisement



Full Cms System [php] - Really Good Guide to Follow.



 

 

 

 

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