ProjectRetro CMS

Page 4 of 4 FirstFirst 1234
Results 46 to 59 of 59
  1. #46
    Goin Goin Gone! LHaZze is offline
    MemberRank
    Mar 2011 Join Date
    VirginiaLocation
    695Posts

    Re: ProjectRetro CMS

    If this CMS isn't free, I'm just going by the text on the layout but.. Your selling a layout that has been designed by sulake? ..

  2. #47
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by Kryptos View Post
    Wow su amazing u pro but let me help you with some stuff.

    PHP Code:

    //global.php

    foreach($_POST as $key => $value)
    {
        
    $_POST[$key] = mysql_real_escape_string($value);
    }

    //Some class or anything

        
    public function Example()
        {
            return (
    mysql_query("UPDATE table SET row = {$_POST['row']} WHERE id = {$_POST['id']} LIMIT 1")); // All needs filtering, we use a foreach and filter all before touching anything. So pro.
        

    Is better than
    PHP Code:
        public function Example($data)
        {
            
    $this->data $data;   
            return (
    mysql_query("UPDATE table SET row = $this->data WHERE id = $id LIMIT 1")); // ID is clearly not inputted by the user, nothing to filter unless you assigned the ID session to a variable and you're retarded and should not be reading this.
        

    Is better than
    PHP Code:
        public function Example($data)
        {
            
    $this->data $data;   
            return (
    mysql_query("UPDATE table SET row = '".mysql_real_escape_string($data)."' WHERE id = '".mysql_real_escape_string($id)."' LIMIT 1"));
        } 
    Is better than
    PHP Code:
        public function Example($data)
        {
            
    $this->data $data;
            
    $sql "UPDATE table SET row = '".mysql_real_escape_string($data)."' WHERE id = '".mysql_real_escape_string($id)."' LIMIT 1";
            
            return (
    mysql_query($sql));
        } 
    Sorry if there are any errors, writing PHP in an iPod Touch is not easy.
    Posted via Mobile Device
    Thanks,

    PHP Code:

    //global.php

    foreach($_POST as $key => $value)
    {
        
    $_POST[$key] = mysql_real_escape_string($value);
    }

    //Some class or anything

        
    public function Example()
        {
            return (
    mysql_query("UPDATE table SET row = {$_POST['row']} WHERE id = {$_POST['id']} LIMIT 1")); // All needs filtering, we use a foreach and filter all before touching anything. So pro.
        

    That is the way i have it now.

    Greetz,

    Quote Originally Posted by LHaZze View Post
    If this CMS isn't free, I'm just going by the text on the layout but.. Your selling a layout that has been designed by sulake? ..
    If you see it that way,
    Yes

    But i said: That i'm not sure of i gonna sell it. Because i see that little payment as a like for the time.

    Greetz,

  3. #48
    Account Upgraded | Title Enabled! Predict is offline
    MemberRank
    Aug 2008 Join Date
    760Posts

    Re: ProjectRetro CMS

    If that's the case, Kryptos, you will need to do something similar with $_GET, oh and cheers. I've updated some of my functions now and the website runs faster. ^^

  4. #49
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by Predict View Post
    If that's the case, Kryptos, you will need to do something similar with $_GET, oh and cheers. I've updated some of my functions now and the website runs faster. ^^
    If you didn't see it was an example for him, as he only used POST in his snippet. That's why he didn't include GET, you know, he is not going to code all the security for him and let him learn it himself.

  5. #50
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    You can post ideas on our Uservoice page
    General: Top (1 idea) – Klantenfeedback voor ProjectRetro

    Greetz,

  6. #51
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    You can help me with translating.
    Want to help?
    (Thread deleted :s)
    Email to: Gertlily@hotmail.com
    (English is what i have)

    Greetz,
    Last edited by GertJanA; 28-01-12 at 01:14 PM.

  7. #52
    JustLikeMeForNoReason Kaan2106 is offline
    MemberRank
    Nov 2007 Join Date
    282Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by GertJanA View Post
    1. I will create it in PHP file okay, And will try to make special chars working :D
    2. What exactly do you mean with Design system via Housekeeping / ASE?

    Greetz,
    ya i forgot that .. ._. ... sorry :'D but i like that u create a language system ;)

    --------------
    uuhm, ur last link (for translating-help) is closed / down...
    "Invalid Thread specified. If you followed a valid link, please notify the administrator"

  8. #53
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    Re: ProjectRetro CMS

    Looks really good, love it! Well done and keep us informed =]

  9. #54
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by RobTheLobster View Post
    Looks really good, love it! Well done and keep us informed =]
    Thanks,
    And i will do.
    Im now working in account settings. I have created the page. Now just functions behind it. And then its nearly done. (I think)

    Greetz,

  10. #55
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

    Re: ProjectRetro CMS

    That
    looks
    sexy

  11. #56
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by zuc0001 View Post
    That
    looks
    sexy
    Thanks.

  12. #57
    Enthusiast MetaPro is offline
    MemberRank
    Dec 2011 Join Date
    Unknown.Location
    48Posts

    Re: ProjectRetro CMS

    Nice bruv. The cms looks a bit crowded though. Try spacing stuff out.

  13. #58
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    Quote Originally Posted by MetaPro View Post
    Nice bruv. The cms looks a bit crowded though. Try spacing stuff out.
    Thanks,
    And about what are you talking exactly?
    On what page?

    Greetz,

  14. #59
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    Re: ProjectRetro CMS

    Im done with English file,
    And with the pages (i think).

    If someone can translate for me to other lang. (Email: Gertlily#hotmail.com - # is an @)
    And registering is now able on ProjectRetro.co.cc

    Found a but.. Tell me :D

    Greetz,



Page 4 of 4 FirstFirst 1234

Advertisement