Posts Tagged ‘SUBMIT’

Seo:How Search Engines Work

Tuesday, July 1st, 2008

Search engines come in two varieties, human-edited and spider indexed. The two major human-edited search engines (or directories as they are properly called) are the Open Directory Project (dmoz.org) and Yahoo. Search engine optimization is lost on the human-edited directories. Because humans will write your title and description for your site when they place it in their directories, using both objective and subjective methods, you have no control in the SEO-world over how your website will rank in these directories.

In both DMOZ and Yahoo, you can suggest a title and description, but most often your words will be rewritten by an editor and placed in their directories according to criteria of which you will not be privy to knowing. One of the big differences between DMOZ and Yahoo is that DMOZ is free and Yahoo is a paid inclusion. With both search directories there is the possibility of not being included, but as stated before DMOZ is free and with Yahoo, if you are not included, no refund will be given.

The only types of search engine in which you have some control are the search engines, which use spiders (sometimes called robots) to read, index and rank your site. The robots (and this is plural because some search engines like Google have several) are basically software applications that travel the Internet by following links and finding websites to read and add to their databases. These robots will travel to your website if you submit your site directly to them (hand-submit) or indirectly submit (through another software submission service or application) or fail to submit (they will follow incoming links to your sites also).

Once the robot finds your site and indexes it, it will move along to other sites from your outbound links. When you site is indexed, then another process takes place and this is the process of determining your ranking for specific keyword or key-phrase searches performed upon the search engine. All of the major search engines that use robots to index websites also use complicated algorithms for determining the page rank of your site. The search engine algorithm software looks at the title and description of the website along with keyword density and prominence to name a few to see which keyword or phrase your site is optimized for (if any). Certain weight is given for each of these components and the page is ranked accordingly.

The advantages of the spider-driven search engines over the directories are that first, search engine robots will continue to index your site on a regular basis whereas the directories basically will stick with the same title and description for the life of the website. Second, a webmaster or SEO professional has control over the optimization process in relation to the search engines, whereas in the directories, optimization is mostly irrelevant. Third, the volume (and popularity) of people using the search engines far outweighs the volume using the search directories. This means that yes, the major search directories are important places to submit your website to, but the major search engines are an absolute necessity.

SEO Tricks

Tuesday, July 1st, 2008

What to watch out for with some SEO companies

First of all, when you are choosing a search engine optimization company you want to find one that has a website with up-to-date information. If you are on a website and see a company stating that Yahoo charges $199 per year to index your site, this is old information. Yahoo now charges $299 per year. If the SEO website you are on states Alltheweb.com or Altavista.com have a basic free submit service, this is out-of-date information. These two search engines have gone over to the “dark side” and have joined Overture in the pay-per-click business model.

Of all of the websites on the Internet that should display the latest information, the SEO companies should be at the top of this list. This is our game. Old information on any website is bad news (except for archived information that is).

Some search engine optimization companies will guarantee that you see significant results within 15 days for a new website. This is an unrealistic statement that no reputable SEO company would make. Most significant results from search engine optimization and submission will occur in months, not days. Some search engines like Google and MSN may index your site within 30 days, but if you have a new site, your search engine placement will be in a sort of “holding tank” for a while and may be buried in the search engine database for another 30-60 days. Sure, your site may be listed, in short order but it will take additional time to gain prominence in the search engine rankings.

Also, some search engine optimization companies will guarantee newbies high-ranking results on low-traffic keywords that have little competition in the search engines. If you are an SEO company who is not concerned about your customer, this approach makes sense. There are fewer high-traffic keywords than low-traffic keywords and the high-traffic keywords generally have much more competition.

There is an SEO scam on the Internet that consumers need to be aware of called the “I’ll host your optimized pages” scam. In the “I’ll host your optimized pages” scam you do not have control of your own web pages and basically pay ransom to the host company on an ongoing basis. Once you miss a payment your web pages may disappear or the optimization you had previous paid for will be wiped clean.

Have you been unfortunate enough to receive the SEO spam scam? This is the email scam that starts out, “I’ve noticed you are not listed on some search engines.” You may have gotten this email even though you are listed number 1 on all of the major search engines. First, any reputable SEO company will not spam you to gain business. The first quest of any SEO company is to try to get to the top of the search engines, not send out spam. Second, this email is not specific to you or your company. Like all spam, the spammers send out thousands of emails hoping a small percentage pay off for big profits. Many of the reputable SEO sites now have ethics statements on their sites. Ethical website optimization includes no cloaking, no deceptive practices and no spamming.

This list is not comprehensive so it is a good idea to ask your SEO company questions upfront and that you receive answers to your satisfaction before you jump onboard. Also, if you have had any bad experiences with some SEO companies not covered here, please send us an email so that we may include what to watch out for in this section and warn other consumers.

HTML:Simple file upload form

Monday, June 30th, 2008

<form method=”POST” enctype=”multipart/form-data” action=”upload.php”>
File to upload: <input type=”file” name=”upfile” />
<input type=”submit” value=”Start Upload” />
</form>

HTML:turn off/disable form’s autoComplete feature

Monday, June 30th, 2008

<form method=”post” action=”form.php” autoComplete=”off”>
<input type=”submit” name=”submit” value=”Go!”>
</form>

JavaScript Forms

Saturday, June 21st, 2008

Being able to successful create JavaScript forms isn’t a difficult process but it may be one that you are unsure about. The common misconception that creating web pages takes an expert computer programmer just isn’t true. While you will use HTML to create JavaScript, you need to realize that they aren’t exactly the same.

With JavaScript you will have several different handlers that the user can click on to perform the necessary actions. This is very important because the easier your web pages are to navigate the more interested consumers will be in them. Some people are very new to using the internet and others are experts so you want to be able to appeal to the level of skill of everyone.

The various JavaScript forms that you create will have coding inserted behind the scenes where the consumer can’t see them. For example your site may have an opt in form for the user to complete. At the bottom they simply click on the form that says SUBMIT. The codes you have entered behind the scenes work to process the information that they have provided.

In order to have a successful JavaScript form called a widget, you need to have several elements in place. They include the form name, the action you want the user to be able to perform, a method for that information to be processed, and a value for each of the JavaScript forms.

There are many different ways in which you can set up JavaScript forms on your web pages. While a simple box that they click is the easiest you may want to offer a radio box or drop down menu if there is more than one option they can select from. You can also offer a text box if you want the user to be able to type in various information.

Before you put your web pages up for consumers to look at, you want to take the time to validate all of the information you have placed into the various JavaScript forms. The goal is for everything to work exactly as it should on the first try. If you come across JavaScript errors you should check each field of entry again. It is going to take some time to master JavaScript but once you do it will become one of the most valuable tools you have to offer.