Search results

  1. Xenous

    [Request] Recent Web build [/Request]

    Anyone wouldn't happen to have a copy of the most recent web build would they? I don't mean the number 63_1dc60c6d6ea6e089c6893ab4e0541ee0/1743 Like the actual web gallery (images/css/js,etc) If you do could you link me or something before I go and waste time constructing my own ^-^
  2. Xenous

    u r ghey

    u r ghey
  3. Xenous

    [CMS][PHP/MySQLi] ZipCMS

    Any chance of showing your MySQLi class?
  4. Xenous

    lolfeg

    lolfeg
  5. Xenous

    Template system

    Should work a charm although I do suggest templating engines such as Smarty or rainTPL. <?php class AvalozTemplate { private $params = Array(); private $filter; private $dir = 'system/template'; public function setDir($dir) {...
  6. Xenous

    Template system

    Yer str_ireplace was off a little, I'm still not sure where you're getting the file to be parsed from in that class but that fixed the code (I think) <?php ################################################ # Template System - Created By GarettMcCarty...
  7. Xenous

    Re: Indigo [Java, MySQL, R63]

    https://github.com/Quackster/Project-Indigo
  8. Xenous

    Post your desktop!

  9. Xenous

    [Dev] CookieMS- Secure, light-weight, scratch, fast. [PHP/OOP/R63+]

    Not bad, wouldn't mind reading the source soon ^^
  10. Xenous

    [DEV] ProjectET 2.0 [PHP/CSS]

    You really shouldn't be suppressing errors with the '@' as you need to know what the errors are during development, so instead allow all the errors and just before release add <?php error_reporting(0); ?> to the core file :D Rather than that I hope this get's finished and you start using PDO...
  11. Xenous

    PHP header location

    <?php $connection = mysql_connect($host, $user, $pass); if(!$connection) { header("Location: http://example.com/pageToBeRedirectedTo"); } $db = mysql_select_db($data, $connection) or die("Error"); /* You could also have * *if(!$db) *{ *...
  12. Xenous

    SQL Injection Problem - HELP IMPORTANT

    Yeah just search the index and register for a file they both require, usually global and add that code in there at the bottom. Any other exploits would be put in there intentially and thus you'd have to remove them manually
  13. Xenous

    SQL Injection Problem - HELP IMPORTANT

    I don't really see why you have all that loool. To avoid injections just add foreach($_GET as $key => $value){ $_GET[$key]=mysql_real_escape_string(stripslashes(htmlspecialchars($value))); } foreach($_POST as $key => $value){...
  14. Xenous

    [PHP] Foreach Parsing Parameters

    If you have like all your parameters in an array like <?php $params = Array('one' => '1', 'two' => '2'); foreach($params as $value => $replace) { $class->Assign($value, $replace); } ?> It should work
  15. Xenous

    [Dev] CookieMS- Secure, light-weight, scratch, fast. [PHP/OOP/R63+]

    Whilst I don't support this at all and prefer my own private thingy, heres a logo you can use!
  16. Xenous

    [PHP] Echo small snippet of content

    Use substr to limit how much it shows! Example of use: <?php $string = 'really long string of text and such that people will get to view when they click read MOAR and read MOAR so I get MOAR views and shit'; //Will return really long string of text... echo substr($string,0,25) ...
  17. Xenous

    Show DevBest CMS STARTER IN PHP

    As long as you credit the developer fairly, although using your own mysqli class would be even better!
  18. Xenous

    Show DevBest [PHP/HTML] Project ET [BLOGGING]

    Then change that bit ^
  19. Xenous

    Show DevBest [PHP/HTML] Project ET [BLOGGING]

    It still has files that say radipanel in the _frontend dir, why should I believe that this isn't a complete rip >< (noting I've never donloaded radipanel
  20. Xenous

    Show DevBest CMS STARTER IN PHP

    Just a suggestion, for a better base you should use like joopies mysqli class and a template engine such as smarty or raintpl :3 (If you decide to do that and need help feel free to pm me)
Top