I cant type in the text box? i use it for when i create News Articles in HK
It wont let me type in the box? i try to hover over it and type and still doesn't work. I looked over the code and can't fix it?
CODE:
<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>...
How do i make it so only the user i entered can enter housekeeping like
<?php
if($_SESSION['user']['rank'] >= 5){
?>
So anything past Rank 5 Will be able to access the HK page how do i make it so only Usernames can enter?
Okay done this but the - {username} doesnt show up on the the News Pages Done know if you need this but
mysql_query("INSERT INTO cms_comments (article, userid, comment, posted_on, author) VALUES ('".filter($_GET['id'])."', '".$_SESSION['user']['id']."', '".filter($comment)."'...
Right thas fine now
but when i try to fetch from the database it doesnt show my guy on staff
$getMembers = mysql_query("SELECT id,username,motto,look,account_created,online,last_online,role,age,country FROM users WHERE rank = '" . $Ranks['id'] . "'");
but when it is
$getMembers =...
Can someone make me a MySQL code to Run that would add the table USERS, I want to Add age country role pease help
Something like this i found this image on the web
I did try but when i tried registering i got
field 'age' doesn't have a default value
<?php
error_reporting(0);
$getRanks = mysql_query("SELECT id,name FROM ranks WHERE id =12 ORDER BY id DESC");
$Bans = mysql_query("SELECT * FROM `bans` WHERE `username` = '" . $Users['username'] . "'");
$BanCount = mysql_num_rows($Bans);
echo $BanCount;
while ($Ranks =...