Welcome to City-Data.com Forum!
U.S. CitiesCity-Data Forum Index
Go Back   City-Data Forum > General Forums > Science and Technology > Internet
 [Register]
Please register to participate in our discussions with 2 million other members - it's free and quick! Some forums can only be seen by registered members. After you create your account, you'll be able to customize options and access all our 15,000 new posts/day with fewer ads.
View detailed profile (Advanced) or search
site with Google Custom Search

Search Forums  (Advanced)
Reply Start New Thread
 
Old 07-17-2008, 08:57 AM
 
Location: North of the Cow Pasture and South of the Wind Turbines
856 posts, read 2,921,952 times
Reputation: 2280

Advertisements

WordPress.org
Reply With Quote Quick reply to this message

 
Old 10-22-2008, 02:49 PM
Bo Bo won $500 in our forum's Most Engaging Poster Contest - Tenth Edition (Apr-May 2014). 

Over $104,000 in prizes has already been given out to active posters on our forum and additional contests are planned
 
Location: Ohio
17,107 posts, read 38,116,197 times
Reputation: 14447
Here's a link to an article published yesterday that should be helpful to folks looking for free hosting options. I used to work for a commercial web host, so I think it's amazing what you can get from a free web host these days.

13 Free Online Tools That Helps You To Create And Host Your Website - Opensource, Free and Useful Online Resources for Designers and Developers
Reply With Quote Quick reply to this message
 
Old 10-23-2008, 02:33 PM
 
Location: California
305 posts, read 1,729,730 times
Reputation: 139
Sava CMS - Open Source ColdFusion CMS - Free to download and use (http://www.gosava.com/go/sava/ - broken link)
Reply With Quote Quick reply to this message
 
Old 10-26-2008, 01:22 AM
 
Location: Chandler, AZ
134 posts, read 145,288 times
Reputation: 63
If you're looking into hosting, I have three dedicated servers where you could host: CMS, databases, standard HTML, whatever you decide. I also do design, so if you're interested I can send you my portfolio, and you can check out my servers as well. I am very flexible with my servers, so if there is anything that you would need, that can be accomodated. I am running Debian, Solaris, and FreeBSD all with Apache2, mod-ssl, PHP, Perl (CGI), Postresql and MySQL databases. I have extremely easy to use interfaces for the SQL databases that I have designed.
Reply With Quote Quick reply to this message
 
Old 11-13-2008, 10:46 AM
 
Location: Burlington VT
1,405 posts, read 4,787,943 times
Reputation: 554
Default .tel (!)

I'm in the same position as the OP...

This isn't entirely the solution I seek - but I stumbled onto this the other day (by reading an advertisement in the NYTimes on paper).

I think this is pretty exciting Telnic | the home of .tel and I'd love the opinions of people here who know more about the guts of the internet than I (that would be most of you )
Reply With Quote Quick reply to this message
 
Old 11-14-2008, 01:50 PM
 
41,813 posts, read 51,059,937 times
Reputation: 17865
First download and install XAMPP, this will install a local apache server on your machine and give you all the tools you get from a host like PHP and MySql. You don't necessarily need these but what it does is provide a testing enviroment even for simple HTMl web pages. Once you start learning things the PHP and Mysql end of it can open many doors...

Next you need an text editor, even if you're going to use a WYSIWG editor in the future it's important you get a decent foundation in understanding HTML and CSS. For that you need to work with a text editor. There's two free ones I'll recommend:

.:: NOTEPAD++ ::.
CoffeeCup Free HTML Editor - The Free HTML Editor is a Drag and Drop Editor with Built-In FTP !

The first one is pretty advanced, the second one is advanced too but it also comes with a WYSIWYG panel too. You can switch betweeen text and WYSIWYG mode.

Once you have you're shiny new editor installed you'll want to head here for some basic HTML tutorials:

HTML Tutorial

Once you've gone through some of the tutorials and are getting basic understanding move to the CSS tutorials here:

CSS Tutorial

HTML and CSS are intertwined so you really want to understand a little of both before moving onto advanced HTML tutorials and finally adavanced CSS tutorials.

Once you get basic understanding of these you can make a decision to move onto a pure WYSIWG editor but remember the power of HTML and CSS lies in understanding how to code it yourself.

If dare to venture you can move into the promised land called PHP. PHP is server side programming language that can do many things. For example this forum software you are using right now is run off of PHP and probably a MySql backend for a databse.

The PHP manual can be found here:

PHP: Documentation

Quote:
if ($obama == "President")
{
echo 'We're doomed!';
}
As far as hosts go, pick a large company with a cheap plan as that is all you most likely need for many years.
Reply With Quote Quick reply to this message
 
Old 11-17-2008, 11:52 AM
 
Location: vagabond
2,631 posts, read 5,456,811 times
Reputation: 1314
Quote:
if ($obama == "President")
{
echo 'We're doomed!';
}
is this javascript?
Reply With Quote Quick reply to this message
 
Old 11-18-2008, 05:14 AM
 
41,813 posts, read 51,059,937 times
Reputation: 17865
Quote:
Originally Posted by stycotl View Post
is this javascript?
It's PHP which is closely related to Javascript, it may actually work in JS but I don't know JS enough to confirm that. Most computer languages have similarities.

PHP: if - Manual

---------------

The difference between PHP and Javascript is PHP is executed on the server before being sent to the client. Using my example from above I'll expand it a little. We'll call this file test.php and upload to the server. Note your server will need PHP installed for this to work, most servers do as its the most widely used programming language for the web:

Quote:
<html>
<head>
<title>My PHP Test page</title>
</head>
<body>

<?php
$obama = 'President';
$mccain = 'Senator';

if ($obama == "President")
{
echo 'We're doomed!';
}
else
{
echo 'We're Saved!';
}

?>

</body>
</html>
Broken down since this particular file starts out as text this is directly sent to the browser by the server:
Quote:
<html>
<head>
<title>My PHP Test page</title>
</head>
<body>
When the server hits the php tag it switches to PHP mode
Quote:
<?php
The next two lines are assiging values to the variables, the variable $obama equals President and the variable $mccain equals Senator:
Quote:
$obama = 'President';
$mccain = 'Senator';
This is an if statement, the double equal signs do not assign a value but instead is comparison and literally means "is equal too" So what we're asking is IF the variable $obama is equal too President.

Quote:
if ($obama == "President")
Since this comparison statement evaluates to true the code between the brackets is executed:

Quote:
{
echo 'We're doomed!';
}
This will add the text we're doomed to the output to the browser. If the comparison statement had evaluated to false and the variable $obama was not eqaul to President then the code between the brackets following the else would be executed:
Quote:
{
echo 'We're Saved!';
}
The server will go out of PHP mode an start outputting text once it hits the ending PHP tag:
Quote:
?>

</body>
</html>
The file served to someone who visits this page with a browser will look like this, the PHP is not sent them to them:

Quote:
<html>
<head>
<title>My PHP Test page</title>
</head>
<body>

We're doomed!

</body>
</html>
Simple right? ;P ....and yes I know Obama isn't President yet.

Last edited by thecoalman; 11-18-2008 at 05:50 AM..
Reply With Quote Quick reply to this message
 
Old 11-19-2008, 12:15 AM
 
Location: vagabond
2,631 posts, read 5,456,811 times
Reputation: 1314
pretty nifty. all of that goes way over my head at the moment, but i'm hoping to get the hang of it within the next few months.
Reply With Quote Quick reply to this message
 
Old 11-19-2008, 03:42 AM
 
41,813 posts, read 51,059,937 times
Reputation: 17865
It's a pretty simple example, you can do just about anything with PHP there is a lot of possibilities. The language was written with the intentions it be used for serving HTML pages. When you combine it with a database you can create pages like this forum.
Reply With Quote Quick reply to this message
Please register to post and access all features of our very popular forum. It is free and quick. Over $68,000 in prizes has already been given out to active posters on our forum. Additional giveaways are planned.

Detailed information about all U.S. cities, counties, and zip codes on our site: City-data.com.


Reply
Please update this thread with any new information or opinions. This open thread is still read by thousands of people, so we encourage all additional points of view.

Quick Reply
Message:


Over $104,000 in prizes was already given out to active posters on our forum and additional giveaways are planned!

Go Back   City-Data Forum > General Forums > Science and Technology > Internet
Similar Threads

All times are GMT -6. The time now is 10:50 PM.

© 2005-2024, Advameg, Inc. · Please obey Forum Rules · Terms of Use and Privacy Policy · Bug Bounty

City-Data.com - Contact Us - Archive 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 - Top