php

  1. B

    RevCMS Question [PHP RELATED]

    yo so I'm doing a shop on RevCMS root folder and I can't use $_SESSION and such. What shall I do to make it work? Thanks.
  2. C

    [SOLVED] $_GET and $_REQUEST not working in revcms client

    Probably not the best way to do it but i'm trying to get R63 room forwarding to work: <?PHP if(!empty($roomid)){ ?> "forward.type" : "2", "forward.id" : "<?PHP echo $roomid; ?>" <?PHP } ?> I've tried using isset() as well as empty() but i believe its a probably...
  3. D

    PHP Pages slow to load

    Hey Y'all, I'm using RevCMS edit when I create a page it takes longer to load then the other pages... How can I make it run little faster? does it have something to do with .htaccess file?
  4. B

    PHP Get Data on based &read={id}

    sup yo I'm trying to get data from database based on index.php?url=hk&staffapps&read={id}. {id} is based on data that is from database. hoping this makes sense. So my code: <table align = "center"> <tr>...
  5. MayoMayn

    Siberia PHP Framework

    What is Siberia? Siberia is a micro PHP framework built for web developer enthusiasts, that love to code their own back-end, but at the same time can't bother to code another 100+ features. It includes features as: MVC Class autoloader by defined namespaces with Composer MongoDB wrapper PDO...
  6. B

    Show content based on permission

    Sup yo I'm doing an admin panel (not habbo related fuck) and i need to show some content based on user's permission level, like 1 2 3 or 4 or whatever. (btw im usin xampp rn) My Php code below:
  7. Zaka

    Upload large files [jQuery+PHP]

    Hi guys, So basically I've been trying to understand file uploading as good as possible since I like to learn new stuff all the time. Now when it comes to uploading files in PHP we have this big issue, large files. Default is 2MB in PHP, easy enough, you can just change the max_file_size and...
  8. MayoMayn

    Show DevBest [PHP - PDO] VPN/Proxy Restriction

    Since y'all got me in a good mood, I'm going to release this script that I coded. For more information about how this service works check out the website that checks the IP's: http://getipintel.net Okay, so first off we gotta create a function called getIP() public function getIP() {...
  9. FirefighterKyle

    Having html element ignore css element

    Alright so I am trying to make a navigation bar, Css code and here is my php/html So what is happening is when I hover over Test it does not bring the I guess subnavi we can call it or drop down menu out side of the ul bar. I am trying to figure out if there is a way to have the <div...
  10. funkystrainz

    [RevCMS] #1136 / Values.. [URGENT]

    Hey all, When I try to run an insert query in my users table, and try to add values, I get either "15 errors found during analysis" or one that says "Column count doesn't match value at row 1". Screenshots (from another thread): http://imgur.com/a/xEGHo http://imgur.com/a/A6ln9 I'd like to be...
  11. funkystrainz

    New CMS, Simple Design, Issues/Need Fix

    Hey everyone, I've been able to test out different CMS's on XAMPP, which is what I'll be using to act as my server. There were a few that I liked, and I had some trouble with setting up the first few, with the exception of one and am now figuring out more about the languages and how I can use...
  12. funkystrainz

    Registration entries to my database? CMS Help

    Support Threaders, I now have access to phpMyAdmin, where I will be able to manage the database that will serve as a storage system for both the game, to remember user info in-game, as well as the page content, for submitted registrations and upon login. However, I have begun to configure my...
  13. MayoMayn

    PHP MySQL Count rows from INNER JOIN - GROUP BY

    What I'm trying to do here, is I want to output the count of the `id` and `user_id` columns from `items`, by users which have the rank `1`. Let's say there's 8 rows in `items` which have a `base_item` of 400, and these 8 rows, where 2 rows of them has a `user_id` of 4 and the existing left has a...
  14. X

    [PHP] Tutorial Request

    Hello I'm looking for someone who can explain me the following: I want to create a dynamic website that load's every page on the index.php, using PHP/Ajax/Json/jQuery/... If you know how to do this, please help me out. Thanks in advance! Best regards
  15. D

    News Title not Selected

    For some odd ball reason my news articles are not being selected when they are being echo out with the titles. I've been trying to get help from all different sort of community but nothing seems to be working. Code that is being used to echo that out. <?php if($news_id !== $a['id']) {...
  16. svviift

    Internal Server Error - Contact Forms???

    Hello DevBest, I've been editing sites and contact forms for a long time now, but it wasn't until recently where I've gained a client and was asked to put in a form, and have had major problems from day one. We're due course to launch now and I'm not quite sure what I'm doing wrong. The layout...
  17. Rain

    [Release] Peace Hotel CMS (BoltCMS v1)

    Hey, This was just sitting on my PC, so I decided to release it to everyone, since I had many people requesting it :b Features; Multiple Languages (http://prntscr.com/be1s83) - Just make MY.lang.php in the /application/langs/ for the diff languages. I'm unsure what langs exist, but i have a...
  18. BIOS

    Nano - PHP7, MVC, PDO

    Nano is a lightweight, clean & fast Content Management System (CMS) which follows the MVC architecure and is based on a modern, stable and extensible base. Features: Secure - Prepared statements, validated data & sanitized output, CSRF protection (A secure token is generated and restricted...
  19. Nicholas

    Limit the amount of attempts for the login in your cms [CMS Security]

    Hello I am a certified PHP developer I have my own brute force script... First you must run this sql code into your phpmyadmin/navicat CREATE TABLE `login_attempts` ( `attempt_number` INT(11) NOT NULL, `time` VARCHAR(255) NOT NULL, `ip_addr` VARCHAR(255) NOT NULL, PRIMARY KEY (`ip_addr`)...
  20. Markshall

    PHP PDO Singleton usage in other classes

    Right, basically I've got an MySQLi singleton wrapper which I want to use in other classes. It is as follows: <?php class Database extends PDO { public static $instance; private $connection; public function __construct() { $this->connection =...
Top