How To Build A Successful Internet Business

70
rate this page

By ysdata


The Bottom Line
The Bottom Line

Choosing the Right Product/Service

Successful Internet Business 101

How to build a Successful Internet Business 101.

  1. Select a product or service to promote
  2. Create a webpage
  3. Advertise

Selecting a product or service to promote - The item you're promoting can be yours or someone else's. Try to pick something you can get behind.

Create a webpage - There are many free templates out there (do a quick google search).

Advertise - Blogging, Youtube videos, Google adword & adsense, Free Internet marketing toods, Podcasting, FeedBurner ....


Creating MYSQL Database


Sucessful Internet Business 102

Forms and Databases

Collecting information about potential customers is a must. When using forms you can have the information forward to your email inbox, but the best solution is to use PHP (MySQL databases).

Sample html form:

<form name="input" action=yourfile.php method="get">
Name:  <input type="text" name="name"> 
Email:  <input type="text" name="email"> 
<input type="submit" value="Process Info"> </form>
 

Sample PHP processing form information:

<?php 
$username="your username";
$password="your password";
$database="your database name";
// Connect to server and select databse.
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$name = $_POST["name"];
$email= $_POST["email"];
$query = "INSERT INTO list VALUES ('$name','$email')";
mysql_query($query);
echo "Thank you";
mysql_close();
$i++;
?>

This code will insert the name and email address into your MYSQL database.

This is a perfect solution for generating an opt-in Newsletter (mailing list).

In your Newsletter you can offer additional information and purchase options for the product/service you're promoting.


E-Commerce News

Yahoo News

Successful Internet Business 103

When promoting your our product/service you can use:

  1. Paypal
  2. Citibank
  3. Yahoo PayDirect
  4. BidPay

When promoting someone else's product/service look for their Affiliate Links.

For more information to the Wikipedia.

Comments

RSS for comments on this Hub Small RSS Icon

No comments yet.

Submit a Comment

Members and Guests

Sign in or sign up and post using a hubpages account.


optional


  • No HTML is allowed in comments, but URLs will be hyperlinked
  • Comments are not for promoting your hubs or other sites

working