Welcome to the JaguarPC Community
JaguarPC
Sales: (888) 338-5261
Support: (888)-551-3050
Results 1 to 13 of 13

This is a discussion on Starting over again... in the Shared & Semi-Dedicated forum
I deleted my site that hasn't been updated since 2003, and was getting back into making a new one. However, my skills are, should I ...

  1. #1
    Rawr! kiwi li's Avatar
    Join Date
    Sep 2002
    Posts
    471

    Starting over again...

    I deleted my site that hasn't been updated since 2003, and was getting back into making a new one. However, my skills are, should I say rusty... and my only knowledge on how to make a website is HTML.

    My question is, what are people using to make their website nowadays? (PHP, XML,Flash)?

    Right now I have the PHP4 bible that I have on my shelf that I'm probably going to start to read unless there's a new modern website making language out there that I should be using instead. ^^;;

    Thank you in advance! ^_^

  2. #2
    Loyal Client the_ancient's Avatar
    Join Date
    Feb 2004
    Posts
    3,386
    php is still one of the fastest growing web lang. out there. and there is no sign of it slowing..

    if you make anything in php though I would suggest making sure it is php5 compatible, more than likly it would be but there are a few things that were changed in 5 that will break programs written in 4, just a FYI

  3. #3
    the Windlord Gwaihir's Avatar
    Join Date
    Jun 2002
    Posts
    2,562
    Actually, not that many PHP4 things were broken by PHP5. I'm confident that updating code of your own making won't be a biggie when the need arises.

    If you want to extensively work object oriented in your code, you might want to dive into PHP5 instead, as the OO support has been significantly improved in that version. You would however still be unable to deploy it for a while here on jag though..
    Regards,

    Wim Heemskerk
    ---
    Visit MeCCG.net - Cardgaming in J.R.R. Tolkien's Middle-earth
    And Gwaihir.net - The Middle-earth CCG store

  4. #4
    Loyal Client the_ancient's Avatar
    Join Date
    Feb 2004
    Posts
    3,386
    Quote Originally Posted by Gwaihir
    Actually, not that many PHP4 things were broken by PHP5. I'm confident that updating code of your own making won't be a biggie when the need arises.

    If you want to extensively work object oriented in your code, you might want to dive into PHP5 instead, as the OO support has been significantly improved in that version. You would however still be unable to deploy it for a while here on jag though..
    correct, which is why I stated

    "more than likly it would be but there are a few things that were changed in 5 that will break programs written in 4"


    there was not much, but there a few,

  5. #5
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    I've been doing this stuff a LONG time. In computer years, I'm as old as Moses. Conversely, I'm also a 'bleeding edge' kinda guy. So, listen to your 'Virtual Moses' on this one...

    PHP is the way to go! To do it right, you're also going to have know HTML, CSS, JavaScript, & MySQL (sql db), 'cause they work hand-in-hand, these days. You really can't run a successful PHP web site without being proficient in the others. So, study...
    • PHP
    • MySQL
    • HTML
    • CSS
    • JavaScript
    ...in that order. Once you get these things figured out, e.g. how the pieces fit together, you'll be leading the parade again, instead of following it...
    Last edited by Vin DSL; 06-22-2005 at 01:55 PM.
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  6. #6
    || $name ne 'R.Stiltskin'
    Join Date
    Jun 2003
    Location
    Tejas
    Posts
    2,438
    I still use XHTML (strict), CSS, and Perl for the most part with some backend SQL. Lot's of PHPers around these parts but I'm preparing myself for transitioning to XML (hence the use of strict XHTML). As always, there is no "best" way, just the suitable way for your target audience and also considering one's own time availability and skill set.

    The only one I would, personally, discourage is Flash or plug-in reliant content. This still puts the onus on the end-user to keep up with plug-ins and their idiosyncracies. Plus, some firewalls/proxies disable or filter such content. I like the eyecandy of Flash but don't find it universally utilitarian... a major drawback when trying to appeal to the broadest audience.

    Anyway, welcome back to the lab.

  7. #7
    Rawr! kiwi li's Avatar
    Join Date
    Sep 2002
    Posts
    471
    Hehe, Vin DSL is the only one I remember from the aleti-.... er... old forums.

    <--- My avatar hasn't changed either~! XP

    Anyways, I'll go ahead and brush back up on my HTML (since that was my first language in making my website), then I'll go ahead and get with PHP, MySQL and Javascript... I'll use the PHP4 bible book and if something goes wrong because of PHP5 I'll try to look it up. ^_^v

    Those javascript classes that I took didn't really help me on learning *anything* on how to do this stuff on the web. ^^;; I'll probably look around some "how-to" websites in order to try to get some idea on how to do that type of stuff... ^^

    I remember I used to go on cnet.com in order to look up some information on how to make webpages... I wonder if there's any other useful sites out there. ^^
    Last edited by kiwi li; 06-22-2005 at 01:58 PM.

  8. #8
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    Yes, CSS, for sure. Forgot that one...

    You can get by without CSS, but it surely makes things easier!
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  9. #9
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    Quote Originally Posted by kiwi li
    Those javascript classes that I took didn't really help me on learning *anything* on how to do this stuff on the web...
    JavaScript used to be sucky, especially pre-broadband. It REALLY slowed things down. But, they have it figured out now.

    Generally speaking, you want to use JavaScript as little as possible, but there are certain things that it does better than anything else. Dittos with raw HTML.

    Most of your coding will be in PHP, with a sprinkling of HTML and JavaScript, here 'n' there. So, concentrate your efforts on PHP initially...
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  10. #10
    Rawr! kiwi li's Avatar
    Join Date
    Sep 2002
    Posts
    471
    Okies! ^_^ Going to read up on PHP and hopefully one day I'll create a site that is hopefully somewhat less shameful than the one that I started back in... 1998 I think. ^^;;

    [Inserted]In order to restart again, I deleted every single thing in my webspace except for this ".trash" file... ^^;;;

    I don't really know how to reset my webspace to where it was when I just started. ^^
    Last edited by kiwi li; 06-22-2005 at 02:33 PM.

  11. #11
    Yeah, I know a LOT! Vin DSL's Avatar
    Join Date
    Mar 2003
    Location
    Arizona Uplands
    Posts
    10,775
    When I 'just started', all I had was an (almost) empty directory called 'HTML', containing a subdirectory called 'cgi-bin' (Ocatl 755). That was it...
    DISCLAIMER Any resemblance between the views expressed above and those of the owners and operators of this system is purely coincidental. Any resemblance between these views and my own are non-deterministic. The existence of Vin DSL is questionable. The existence of views in the absence of anyone to hold them is problematic. The existence of the reader is left as an exercise in the second-order coefficient.

    No Guts, No Story! VinDSL © 2010

  12. #12
    Rawr! kiwi li's Avatar
    Join Date
    Sep 2002
    Posts
    471
    Masood helped me get it all reset. ^_^ Now it's time to get cracking on that book. ;_; Thank you all for the help. ^_^

  13. #13
    Loyal Client
    Join Date
    May 2002
    Location
    Wisconsin, USA
    Posts
    568
    Quote Originally Posted by Vin DSL
    Yes, CSS, for sure. Forgot that one...

    You can get by without CSS, but it surely makes things easier!
    Not to mention easier on your visitors download times, more accessible to those with disabilities, improved search engine results...

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •