• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 17:16
CEST 23:16
KST 06:16
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting2[ASL20] Ro4 Preview: Descent6Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)67Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Weekly Cups (Oct 6-12): Four star herO PartinG joins SteamerZone, returns to SC2 competition 5.0.15 Patch Balance Hotfix (2025-10-8) IP For new Brazil servers for NA Players TL.net Map Contest #21 - Finalists
Tourneys
WardiTV Mondays SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
Any rep analyzer that shows resources situation? BW General Discussion [ASL20] Ro4 Preview: Descent I'm making videos again Whose hotkey signature is this?
Tourneys
[ASL20] Semifinal A [ASL20] Semifinal B [Megathread] Daily Proleagues [ASL20] Ro8 Day 4
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread The Games Industry And ATVI Stop the Construction
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1288 users

Starting Web

Blogs > Greem
Post a Reply
1 2 Next All
Greem
Profile Blog Joined September 2010
730 Posts
Last Edited: 2012-12-18 14:38:26
December 18 2012 11:42 GMT
#1
Hello TL, i'm looking to start a web, but sadly my knowledge in this area are pretty limited. I purchased a domain in godaddy.com , they also offer hosting services, so my question is to support high traffic sites , like mmo-champion, curse.com, what kind of hosting is needed ?

I'm building a simple site which is kind of item finder, similar to ebay let's say, so as i understand it's gonna work a lot with access to different databases, pulling in and out information, search like engine. No video, no downloads, maybe simple message system with real time chat. What would you recommend for this ?


Just read http://www.forbes.com/sites/kellyclay/2012/09/10/5-reasons-you-should-leave-godaddy-and-how/ and so probably gonna use different site now, the CEO killing an elephant is unacceptable.


Decided to go with https://www.gandi.net/, for domain registration. And http://www.ipage.com/ for hosting. Also looking into importance of http://dyn.com.

youtube.com/N0rthernL1ght
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 18 2012 12:38 GMT
#2
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.
Such flammable little insects!
Greem
Profile Blog Joined September 2010
730 Posts
Last Edited: 2012-12-18 12:56:43
December 18 2012 12:56 GMT
#3
On December 18 2012 21:38 Rannasha wrote:
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.


Couldn't imagine a better answer than this, thank you sir! The thing i fear is that as i start as a beginner, if the idea will work, anyone out there with better understanding of things in this area, who is able to provide high quality service doing basically the same, is gonna destroy me altogether ) But i guess that is another problem i need to look into Thank you again!
youtube.com/N0rthernL1ght
SgtCoDFish
Profile Blog Joined July 2010
United Kingdom1520 Posts
December 18 2012 14:01 GMT
#4
Javascript (not to be confused with Java) is also pretty important for the web, as is CSS. I'd say learn HTML before anything, then CSS. Then learn Javascript/PHP + MySQL... which is more important will depend very much on what you're actually going to try and do. If you need specific tips once you've got the basics down, visit the Big Programming Thread on TL, or one of the programming subreddits such as reddit.com/r/learnprogramming

I also would recommend against godaddy, purely because of their lack of support for net neutrality. Haven't shopped for hosting in a while so I can't help beyond recommending against godaddy.
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
Last Edited: 2012-12-18 14:02:57
December 18 2012 14:01 GMT
#5
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.
Such flammable little insects!
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:16 GMT
#6
On December 18 2012 23:01 SgtCoDFish wrote:
Javascript (not to be confused with Java) is also pretty important for the web, as is CSS. I'd say learn HTML before anything, then CSS. Then learn Javascript/PHP + MySQL... which is more important will depend very much on what you're actually going to try and do. If you need specific tips once you've got the basics down, visit the Big Programming Thread on TL, or one of the programming subreddits such as reddit.com/r/learnprogramming

I also would recommend against godaddy, purely because of their lack of support for net neutrality. Haven't shopped for hosting in a while so I can't help beyond recommending against godaddy.


Thank you ) Godaddy was the fastest thing i found, but then looking closely on what people thing i found that they were in favor of pipa/sopa, on top of that they CEO posted a picture killing an elephant, that is just beyond disgusting.
youtube.com/N0rthernL1ght
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:21 GMT
#7
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!
youtube.com/N0rthernL1ght
Recognizable
Profile Blog Joined December 2011
Netherlands1552 Posts
December 18 2012 14:31 GMT
#8
On December 18 2012 23:21 Greem wrote:
Show nested quote +
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!


It'll take you some time tho. Unless you have all day I guess it can take up to a year to learn how to properly make a website like this.
KillerSOS
Profile Blog Joined July 2010
United States4207 Posts
December 18 2012 14:34 GMT
#9
If you dont know how to code Wordpress is a solid way to start.
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:36 GMT
#10
On December 18 2012 23:31 Recognizable wrote:
Show nested quote +
On December 18 2012 23:21 Greem wrote:
On December 18 2012 23:01 Rannasha wrote:
If you lack the technical skills to implement your idea yourself, you'll have to work together with someone who does have the tech-skills, but no projects to use them on. If you really have a good idea, you may even get a loan from a bank or some other investor for it to get the thing jumpstarted, but that's rather hard in todays economy and new internet-ideas being so common.

Either way, if you feel that your idea is really unique (do research, there are often sites that are very similar to what you're wanting to make, but they're just not that well known) and easy to copy once it's out there, you should wait with making it publicly available until it's fully operational. And even then, you shouldn't count on large traffic-volume in the first weeks or months, so don't overbudget your hosting too much. Instead, find a hoster that will migrate you to a larger hosting-plan if your needs grow.


I did searching for similar sites, and i found none, and it kinda surprised me since i been in that "business" for long time and it just hit me. Sadly i got no friends with such skills, and telling the idea to someone else with technical skills could just result in major mistake, they just can do it for themselves. So i just in a middle of nothing, trying to protect and to make. Thanks a lot for your insight, again!


It'll take you some time tho. Unless you have all day I guess it can take up to a year to learn how to properly make a website like this.


I've got all day , and ye, i believe from 0 its gonna take painfully long period of time. But i'm up for it. I will edit this blog with every new thing i find and learn. Maybe someone else , sometime in the future will choke with the same obstacle.
youtube.com/N0rthernL1ght
Greem
Profile Blog Joined September 2010
730 Posts
December 18 2012 14:44 GMT
#11
On December 18 2012 23:34 KillerSOS wrote:
If you dont know how to code Wordpress is a solid way to start.


I will look into it, thanks !
youtube.com/N0rthernL1ght
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
December 18 2012 15:25 GMT
#12
Wordpress isn't really a good start if you want to make any form of interactive website. Wordpress is great for making a blog-like website, where you just add content as you go, but everything remains static. You don't really learn much from using Wordpress. It's excellent at quickly setting up a semi-static webpage with a decent CMS behind it, but if you want to go further than what it has to offer, you might as well skip it alltogether.

There's really no way to get around learning things like HTML, PHP, CSS, MySQL and JavaScript (and how much you need to know of each depends on your goals) if you want to make something like a search-engine.
Such flammable little insects!
micronesia
Profile Blog Joined July 2006
United States24709 Posts
December 18 2012 15:27 GMT
#13
I just started learning html/css and you should probably do the same:

http://www.codecademy.com/tracks/htmlcss

They also have javascript but that's probably much less important for us new web designers than html/css. I'm about 65% done with the html/css section. After that I will probably play around with my new knowledge and possibly learn some php as was suggested earlier in this thread. Personally, I don't think I'll be needing mySQL any time soon.
ModeratorThere are animal crackers for people and there are people crackers for animals.
Deleted User 135096
Profile Blog Joined December 2010
3624 Posts
December 18 2012 16:33 GMT
#14
yea, if you do start with html, don't learn html only... css is pretty much indespensable in today's landscape.
Administrator
JDub
Profile Joined December 2010
United States976 Posts
December 18 2012 17:11 GMT
#15
Just fyi, as far as server technologies go, there are many great alternatives to PHP, many that make getting started a lot easier. Django (a Python framework) is one of my favorites, but as you can see, there are a ton of frameworks just in Python alone: http://wiki.python.org/moin/WebFrameworks

If you do want to go with PHP, after learning the basics of PHP I would really recommend picking up one of the PHP frameworks, as it will save you a massive amount of time: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks#PHP_2.

Most of the frameworks basically take a lot of the boring work out of the web development, and let you get started on the meat of your web app right after getting them set up.
LML
Profile Blog Joined March 2007
Germany1770 Posts
December 18 2012 17:12 GMT
#16
for hosting I can highly suggest networksolutions.com
I think I got the basic package and already have alot of storage, unlimited traffic, a domain, and FTP/MySQL support
LML
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
December 18 2012 17:41 GMT
#17
I'd say stick with HTML5, CSS and javascript for as long as you can. Using a server side language such like PHP, ASP.NET, JSP, Python, Ruby etc lets you do powerful stuff, but you shouldn't learn these things "just to learn them", find a situation where you need them and go from there.

Depending on the site you're making, you might not even need javascript. HTML and CSS alone lets you make beautiful presentations of information. Javascript lets you make it a bit more dynamic... and with server side scripting/databases, you can start to make sites with a more "application feel" to them. One should, IMO, never use too much. If you want a site with some information and images etc, HTML and CSS will do just fine.
StatixEx
Profile Blog Joined August 2011
United Kingdom779 Posts
December 18 2012 18:25 GMT
#18
after christmas im starting a learn html with css with 12-13 yr olds if you message me past han 7th ill link you to the lesson content and you can follow the resources and vid tutorials i make
willoc
Profile Joined February 2011
Canada1530 Posts
December 18 2012 19:38 GMT
#19
Wow. Those Forbes articles you linked make them look like amateur journalists especially the article that came out the same day on why you should use GoDaddy. So much misinformation, bad logic and retarded assumptions made by them and now they looks like fools.

http://www.forbes.com/sites/tomwatson/2012/09/10/five-reasons-you-should-use-godaddy-and-why/
Be bold and mighty forces will come to your aid!
Clbull
Profile Blog Joined February 2011
United Kingdom1439 Posts
December 18 2012 19:46 GMT
#20
On December 18 2012 21:56 Greem wrote:
Show nested quote +
On December 18 2012 21:38 Rannasha wrote:
I would start by learning HTML, PHP and MySQL.

HTML (HyperText Markup Language) is the language that structures webpages. You use it to divide information in paragraphs, define headers, add figures, etc... It is complemented by CSS (Cascading Style Sheets), which is a language that describes style (colour, size, font, etc...) of elements of the webpage.

PHP (PHP Hypertext Processor) is a scripting language. It is very widely used to create server-side scripts that make up dynamic webpages. These scripts take user input (if any) and combine it with database input, calculations, etc... to generate a webpage (in HTML) on the fly. TeamLiquid uses PHP for their website, as do many other large and small sites.

MySQL is a database system that allows you to easily store and query data. It is freely available on all platforms and has a good enough performance for all but the most extreme applications. There's a good interface between PHP and MySQL, allowing you to use PHP commands to query the database.

As for hosting, it doesn't really matter that much. Any hosting service that isn't too small will be able to host a growing website and scale up with the needs of the user. Small websites are hosted on machines with dozens of sites on them, with no access to programs running the background. Larger websites may run from a virtual server, meaning that the website owner can treat it as a separate machine for his site, allowing him to run specialized software in the background (perhaps for indexing purposes if it's a search-engine-type-website), but in reality there are still several of these virtual machines running on one physical machine, each virtual machine unaware of the presence of others. As you scale up, the website will use an entire physical machine and eventually may have to start adding additional servers. Really large websites have servers dedicated to specific tasks: Database, serving static content (images), generating dynamic content, caching, etc...

Start out small. You say you have very limited knowledge in this area, so it's best to just start with a very basic hosting account and build up your website. As the website grows, you can either expand the account or, if your hoster has limited options, switch alltogether. A properly executed hoster-switch hardly incurs any downtime.


Couldn't imagine a better answer than this, thank you sir! The thing i fear is that as i start as a beginner, if the idea will work, anyone out there with better understanding of things in this area, who is able to provide high quality service doing basically the same, is gonna destroy me altogether ) But i guess that is another problem i need to look into Thank you again!

There's a really good Sitepoint book called "PHP & MySQL: Novice To Ninja" that goes into a lot of this stuff.
1 2 Next All
Please log in or register to reply.
Live Events Refresh
Next event in 2h 44m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft241
ProTech103
Livibee 90
Nathanias 25
StarCraft: Brood War
Britney 18372
Shuttle 767
Backho 79
Aegong 30
Dota 2
capcasts122
Counter-Strike
Stewie2K483
Foxcn196
Super Smash Bros
PPMD9
Heroes of the Storm
Liquid`Hasu457
Other Games
Grubby3351
FrodaN1909
fl0m732
shahzam604
Skadoodle240
TKL 194
C9.Mang0168
fpsfer 1
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• davetesta310
• kabyraGe 127
• Hupsaiya 39
• musti20045 30
• poizon28 25
• IndyKCrew
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Other Games
• imaqtpie1374
• Scarra622
• WagamamaTV364
Upcoming Events
Replay Cast
2h 44m
Afreeca Starleague
12h 44m
Soma vs Bisu
OSC
16h 44m
OSC
20h 44m
MaxPax vs Gerald
Solar vs Krystianer
PAPI vs Lemon
Ryung vs Moja
Nice vs NightPhoenix
Cham vs TBD
MaNa vs TriGGeR
PiGosaur Monday
1d 2h
The PondCast
2 days
OSC
2 days
Wardi Open
3 days
CranKy Ducklings
4 days
Safe House 2
4 days
[ Show More ]
Sparkling Tuna Cup
5 days
Safe House 2
5 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.