Welcome to Dream.In.Code
Getting Help is Easy!

Join 136,485 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,737 people online right now. Registration is fast and FREE... Join Now!




Not Sure What Language Makes The Most Sense

 
Reply to this topicStart new topic

Not Sure What Language Makes The Most Sense, Trying to decide on the right web development language for the job.

Mulsiphix
22 Feb, 2008 - 12:15 AM
Post #1

New D.I.C Head
*

Joined: 22 Feb, 2008
Posts: 1

I have no programming experience. I've been writing HTML for the last decade and worked loosely with web related languages like XML, CSS, PHP, and Javascript. Note that I cannot write anything in any of these. I've successfully modify existing code only and even then such modifications were generally minor.

I want to create a website that will have a member registry that will include names, addresses, personal details, and numerous other fields. Eventually there will be tens of thousands of people within it. I'd like to create a simpler form of MySpace for users to create their own small websites within the community which would include custom backgrounds, wiki's, blogs, and several "user friendly" submission systems for things like news, journal entries, wiki entries, etc... I assume this will require a database and that is something I know nothing about. I've worked with them in the past when I installed and ran phpBB forums but all of the hard work was pretty much taken care of by the installer.

Other than this website I do not plan on "programming" anything. If I can avoid learning multiple languages to accomplish this I would like to. This is definitely a situation where I would like to take the path of least resistance. I'm just not sure what that route is. C# and ASP? Java? CSS and XML? I am willing to put in the time but would like to avoid wasting time wherever possible. What would be the best route to go? Any suggestions would be most appreciated.
User is offlineProfile CardPM
+Quote Post

Tom9729
RE: Not Sure What Language Makes The Most Sense
22 Feb, 2008 - 04:29 PM
Post #2

Debian guru
Group Icon

Joined: 30 Dec, 2007
Posts: 1,459



Thanked: 10 times
Dream Kudos: 325
My Contributions
PHP, XHTML, and a MySQL database.

PHP is probably the simplest language I've ever encountered. It has the ease of use of Java, without all the bloat, and it doesn't rely on any client side technologies (all it does is generate HTML). It also runs on a wider variety of servers than ASP (which is pretty much limited to IIS).

XHTML is just HTML with some stricter rules. I wouldn't really call CSS a programming language. It's more of a compliment to XHTML, allowing you to move the style information away form the code. If you need to brush up on XHTML and CSS, head over to the w3schools site, they have a lot of nice tutorials.

I learned PHP over a few weeks with this book. It's a little pricey (all O'Reilly books are sad.gif), but it's definitely worth the money, and it'll cover everything you'll need to do (connecting with a database mainly). If you want a preview, they have one on that site, you can see the index and the first few pages of each chapter.

You'll be able to write most of your pages in XHTML. PHP code can be inserted anywhere to make the page "dynamic".

For example.
CODE

<?php

$name_of_page = someFunctionToGetThePageName();

?>

<html>
    <head>
        <title><?php echo $name_of_page; ?></title>
    </head>
    <body>
        <?php display_the_page(); ?>
    </body>
</html>


And of course, your most important tool will be Google. Most PHP questions can be answered on PHP's website, and Google will find you those links if you ask nicely.

Happy coding. smile.gif
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/2/08 07:16PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month