May someone code me a CMS please? :(

GhostEU

Hail the king.
Jul 19, 2012
169
18
Hi DevBest,

I've been going around looking at other other RevCMS releases, but that is not what I am looking for, what I am looking for is more professionally created, and looks good. I cannot lie, some posts were just an 'EDIT' of RevCMS, for meaning just changing a few HTML codes or PHP codes, but I have passed that stage years back, I still am looking for a thread, or a tutorial on 'How to make a CMS for your own retro.' But searching around, it's not helping, may someone please help me make one?

Sorry if this is useless, and boring, but I really need a professionally made CMS (Themes)
 

TesoMayn

Boredom, it vexes me.
Oct 30, 2011
1,482
1,482
PHP:
<?php
$mysqli = new mysqli('localhost','root','tesodaboss','site');
$result = $mysqli->query("SELECT * FROM stories ORDER id DESC");
?>
<div id="content">
<?php while($site = $results->fetch_assoc()){ ?>
<h4><?php echo($site['title']);?></h4>
<p><?php echo($site['story']);?></p>
</div>
<?php } ?>

Yw.
 

TesoMayn

Boredom, it vexes me.
Oct 30, 2011
1,482
1,482
You have to edit
PHP:
mysqli('localhost','root','tesodaboss','site');

localhost = your MySQL host
root = your MySQL username
tesodaboss = your MySQL password
site = your MySQL database naem
 

Users who are viewing this thread

Top