TowelCMS (w/ Live Demo) - Built For MoopleDEV!

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 46
  1. #31
    Account Upgraded | Title Enabled! King Towel is offline
    MemberRank
    Nov 2010 Join Date
    213Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Ahh, thanks for the avatar note. Completely forgot about that.

    I will edit the main thread with a complete list of all tables created, and existing ones updated.

    However as of right now, this will not be released to the public until I'm done with it ;)

  2. #32
    Account Upgraded | Title Enabled! Nmb1Gamer is offline
    MemberRank
    Apr 2009 Join Date
    Anime HeavenLocation
    383Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Sent you a PM~

  3. #33
    no bueno. Basic is offline
    MemberRank
    Jul 2009 Join Date
    MichiganLocation
    746Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Much much better.

  4. #34
    Account Upgraded | Title Enabled! King Towel is offline
    MemberRank
    Nov 2010 Join Date
    213Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Quote Originally Posted by (Marchmellow) View Post
    Much much better.
    Thanks :D

  5. #35
    no bueno. Basic is offline
    MemberRank
    Jul 2009 Join Date
    MichiganLocation
    746Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Make the background fade kinda into black. I have a 1920x1080 monitor and I can see the lines where the background image ends.
    Posted via Mobile Device

  6. #36
    Member Stretch is offline
    MemberRank
    Sep 2011 Join Date
    82Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Basic HTML, I like :).

    But the colors, and the nav. I think if you release it, I will release something neater :G

  7. #37
    Banned Sublime is offline
    BannedRank
    Dec 2010 Join Date
    On your shouldeLocation
    1,040Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    It's done in PHP afaik.

  8. #38
    Member Stretch is offline
    MemberRank
    Sep 2011 Join Date
    82Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    i will convert it in html then afaik

  9. #39
    Account Upgraded | Title Enabled! King Towel is offline
    MemberRank
    Nov 2010 Join Date
    213Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Quote Originally Posted by Stretch View Post
    Basic HTML, I like :).

    But the colors, and the nav. I think if you release it, I will release something neater :G
    No.... Just no... It's not "Basic HTML". IT's PHP and CSS with as little HTM as possible.. And read the thread, as of right now, it's not being released.. And if you had some kind of brain, you would know that I have already changed the "colors, and the nav" multiple times, and they will be changed at least once more before this is finished.

    Good luck releasing something neater ;)

    Quote Originally Posted by Subline View Post
    It's done in PHP afaik.
    Thanks, tips ;)

    Quote Originally Posted by Stretch View Post
    i will convert it in html then afaik
    I'd give you my entire life savings, my car, and my house if you can make this entire script run how it does now "Converted into html".


    EDIT: Added screenshots of v1.5.2
    Last edited by King Towel; 22-02-12 at 10:01 AM.

  10. #40
    Enthusiast SoBrisk is offline
    MemberRank
    Sep 2011 Join Date
    27Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Quote Originally Posted by King Towel View Post
    No.... Just no... It's not "Basic HTML". IT's PHP and CSS with as little HTM as possible.
    What does that even mean? The 'ammount' of HTML is doesn't matter and is based off of what you need to make the design work. Also yes it is just 'basic html'. Unless you are using javascript or some other technology, its just 'basic html'.

    Quote Originally Posted by King Towel View Post
    I'd give you my entire life savings, my car, and my house if you can make this entire script run how it does now "Converted into html".
    It is already HTML so I just converted it to HTML by not changing anything. I will be taking your soul now.

  11. #41
    Account Upgraded | Title Enabled! King Towel is offline
    MemberRank
    Nov 2010 Join Date
    213Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    -.-

    The browser interprets everything as HTML.. However, pinging an ip:port, and selecting/printing data from a MYSQL database is unable to be done in HTML. Your simply viewing what the browser sees by looking at the source.. Basic HTML..

    for example:

    What you see in PHP:

    PHP Code:
    <?php echo "<div id='1'>"?>Hello World!<?php echo "</div>";?>
    What that would look like in "View Source":

    Code:
    <div id='1'>Hello World!</div>

    Quit being a flamer, and go .... yourself..

  12. #42
    Enthusiast SoBrisk is offline
    MemberRank
    Sep 2011 Join Date
    27Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Quote Originally Posted by King Towel View Post
    -.-

    The browser interprets everything as HTML.. However, pinging an ip:port, and selecting/printing data from a MYSQL database is unable to be done in HTML. Your simply viewing what the browser sees by looking at the source.. Basic HTML..

    for example:

    What you see in PHP:

    PHP Code:
    <?php echo "<div id='1'>"?>Hello World!<?php echo "</div>";?>
    What that would look like in "View Source":

    Code:
    <div id='1'>Hello World!</div>

    Quit being a flamer, and go .... yourself..
    I don't see whats so hard about this concept. HTML is a markup language. PHP is a language that helps make HTML a bit more dynamic. PHP is not changing the HTML, it is generating it. Using echo to output a tag does not make it different than a tag typed in a static document. PHP doesn't even care about HTML. You could use PHP to just as easily output source code for C++.

    Your example is horrible, what you see when you view source is the output of the PHP script embedded into HTML. The output you send to the browser is basic HTML, the basic HTML that the PHP script generates is basic HTML and the PHP script that generates the basic HTML is basically doing a basic thing by generating basic HTML that is basic even within the PHP script. There is just so much inherently wrong with what you are saying...

  13. #43
    Account Upgraded | Title Enabled! King Towel is offline
    MemberRank
    Nov 2010 Join Date
    213Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Quote Originally Posted by SoBrisk View Post
    I don't see whats so hard about this concept. HTML is a markup language. PHP is a language that helps make HTML a bit more dynamic. PHP is not changing the HTML, it is generating it. Using echo to output a tag does not make it different than a tag typed in a static document. PHP doesn't even care about HTML. You could use PHP to just as easily output source code for C++.

    Your example is horrible, what you see when you view source is the output of the PHP script embedded into HTML. The output you send to the browser is basic HTML, the basic HTML that the PHP script generates is basic HTML and the PHP script that generates the basic HTML is basically doing a basic thing by generating basic HTML that is basic even within the PHP script. There is just so much inherently wrong with what you are saying...
    I completely understand what HTML is. I completely understand what PHP is. The fact of the matter is, the newb somewhere up there^^ who said he was goona steal my project and convert it into HTML with the same overall functionality is simply horseshit. I understand that PHP is entirely server-side and everything outputted could be in any coding language, from CSS to HTML, and even just blank text. The browser will still interpret it as HTML. Do you think i could be a web developer without this knowledge?

    Quit being a flamer for post count and go pick on a noob who is ACTUALLY a noob.

  14. #44
    High Society Chance is offline
    MemberRank
    Jul 2011 Join Date
    New YorkLocation
    581Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    I really like the colors to it.

  15. #45
    Proficient Member skillet is offline
    MemberRank
    Jul 2010 Join Date
    150Posts

    Re: TowelCMS (w/ Live Demo) - Built For MoopleDEV!

    Make a little fade in the banner. I have a 20 inch monitor and when I stretch out the window the banner cuts off. The center glow can always use some fade as well. And register can be cleaned up by tables. It looks a little messy. Other then that, I really like it. Keep it up! :)



Page 3 of 4 FirstFirst 1234 LastLast

Advertisement