I Bought a website at hostmonster.com and i want to make money can someone help me out?
Posted on Mar 30, 2009 under hostmonster.com | 3 Commentsif someone will help me out i will share
if someone will help me out i will share
Anyone out there with answers i could sure use them…Thanx
its confusing to select the all services and calculate total cost for new user. can anyone plz guide: what will be the most minimum (least economical) cost for running 1 website for 1 year (with all costs domain name,domain,webhosting.etc.).. thanks
I am completely new to this domain thing. its something I been looking into for years now. there are so many options to chose from when I am signing up. I just want a cheap page where I can upload music and pictures etc, of my artists that I manage. I dont need 10 pages or 350 gigs of memory, just something functional. I know html and photoshop so i plan to design it on my own. can some one please lend some experienced guidance.
Godaddy.com has delux hosting where you can have more than one website.. Does anyone do this? How easy is it to use? Is there ever a mixup or is it pretty easy to upload the right file to the right domain??
I am very new to godaddy! I honestly dont know anything!
If anyone can give me descriptive instructions it would be greatly appreciated! Any help or tips would be great!
My host is l4rge.com the cPanel has different things under the domain name section: subdomains, redericts, addon domains, parked domains. Which should i use to set the domain name from godaddy with my site?
P.S: Please read my question thoroughly before answering, this is the second time I’ve had to ask this because people on yahoo answers give me answers for a different question..
This is my website:
http://style.kaitlenisawesome.com
When I visit kaitlenisawesome.com, it is a blank page.
How can I get it to be like pursebuzz.com where when you visit it, there are two links. One to the hair section and one to the makeup section.
My domain is registered under GoDaddy.com and I am using the Quick Blogcast service. I am willing to use another editing program if needed or to switch services
Help?
I registered a domain name with Godaddy.com and now that i have the domain it is called a parked domain, but i cant figure out how to start to upload the website that i have created. Do i need to buy an additional FTP for the site or is it already included?
My operating system is Windows XP but when I sent a help request to Go Daddy regarding webforms and databases, ie php and mysql, they told me I had to switch my hosting account from Windows to Linux.
I’ve done this, but can’t get my forms working. I’m not sure if I’ve simply botched the script or whether it’s because I have a Linux hosting account when I operate on Windows!!! Can anyone help please?
When I click "Submit", it tries to go to www.mydomain.info/processform.php and then I get an error message: HTTP 404 Not Found
This is the code I am using for the form (with the guts of the form fields cut out):
<form action="/webformmailer.php" method="post">
<?php
<input type="hidden" name="subject" value="WebForm" />
<input type="hidden" name="redirect" value="thankyou.html" />
?> <label><span class="style1">First name:
<input name="name" type="text" id="name" size="50" />
</span></label>
<p class="style1">
<label>Surname:
<input name="Surname" type="text" id="Surname" size="50" />
</label>
</p>
<p class="style1">
<label>
<input type="submit" name="button" id="button" value="Submit" />
<?php
<input type="hidden" name="email" value="mailto:me@myemail.com" />
<input type="hidden" name="form_format" value="default" />
<input type="hidden" name="form_order" value="default" />
<input type="hidden" name="form_delivery" value="default"/>
?> </label>
</p>
<p class="style1"> </p>
<p class="style1"> </p>
<p> </p>
</form>Contact_Form
<?php
//Connect To Database
$hostname="pXXmysqlXXX.secureserver.net";
$username="Contact_Form";
$password="mypassword";
$dbname="Contact_Form";
$usertable="your_tablename";
$yourfield = "your_field";
mysql_connect($hostname,$username, $password);
mysql_select_db($dbname);
# Check If Record Exists
$query = "SELECT * FROM $usertable";
$result = mysql_query($query);
if($result)
{
while($row = mysql_fetch_array($result))
{
$name = $row["$yourfield"];
echo "Name: ".$name."
";
}
}
?>