Jump to content

kaz

Members
  • Posts

    68
  • Joined

  • Last visited

Everything posted by kaz

  1. kaz

    CSS Code Not Reflecting

    Thanx a million! By the way that's a scary you have there.
  2. Hi,I'm caught in a bit of a dilemna. The main table of the index page of my website(http://kazmania.110mb.com/index.html) is skewed to the right instead of floating to the left. The code is shown below. the id for the main table is #main. Please help.body { font-family: arial,helvetica,sans-serif; font-size: 11px; text-align: center; background-color: #8A644D; } a { color: #000000; text-decoration: underline; font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; }a:visited { font-family: Verdana, Arial, Helvetica, sans-serif; color: #fff; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; padding-left: 15px; font-size: 10px;}#container{ margin-left: auto; margin-right: auto; width: 700px; text-align: left; margin-bottom: 10px; padding-bottom: 0px; border-right: 1px solid #E93711; border-left: 1px solid #E93711; border-top: 1px solid #E93711; border-bottom-color: #E93711;}#banner { width: 700px; padding-top: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Impact, Arial Black, sans-serif; font-size: 48px; color: #fff; font-weight: normal; height: 120px; background: #CCCCCC url(images/bg2.jpg) no-repeat; } #linkbar { width: 680px; height: 40px; background-color: #8A220A; padding: 5px 5px 5px 15px; border-top: 2px solid #fff; }#linkbar a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; color: #fff; font-weight: normal; text-transform: uppercase; text-decoration: none; letter-spacing: 0.1em; background-color: #8A220A; padding-left: 15px; } #linkbar a:hover { text-decoration: underline; color: #FFFFFF; font-weight: normal; }#linkbar a:visited { padding-left: 15px;}#wrapper { float: left; width: 700px; background-color: #52818A; background-position: left top; background-repeat: repeat-y; background-image: url(images/fotobg.jpg); border-bottom: 1px solid #E93711; height: auto; }#main { width: 350px; padding-left: 15px; padding-right: 5px; line-height: 18px; padding-top: 10px; height: auto; float: left; }#main h1 { font-size: 24px; color: #9F6984; font-family: serif; text-transform: uppercase; text-align: center; } #main h2 { font-size: 16px; color: #E93711; font-family: Geneva, Arial, Helvetica, sans-serif; text-transform: none; text-align: center; } .footer { font-size: 11px; color: #FFFFFF; font-family: sans-serif; text-transform: none; text-align: center; }#inner { width: 60px; height: 725px; float: left; padding: 10px; border-left: 1px dotted 52818A; }#inner a:link { font-family: Arial,sans-serif; font-size: 10px; color: #993366; font-weight: normal; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 0.1em; line-height: 18px; } #inner a:visited { font-family: Arial,sans-serif; font-size: 10px; color: #993366; font-weight: normal; text-transform: uppercase; text-align: center; text-decoration: none; letter-spacing: 0.1em; line-height: 18px; }#inner a:hover { text-decoration: underline; }#outer { width: 275px; float: left; padding-left: 20px; padding-right: 10px; margin-top: 0px; background: #8A220A; margin-left: 20px; height: auto; }#footer { height: 10px; width: 700px; margin-right: auto; margin-left: auto; clear: left; text-align: center; padding-top: 2px;} #outer p { color: #FFFFFF; padding: 10px; padding-bottom: 15px; margin-top: -15px; font-face: verdana,arial,helvetica,sans-serif; font-size: 13px; line-height: 18px; }#outer h1 { text-align: center; padding-bottom: 5px; margin-top: 5px; font-family: serif; font-size: 20px; color: #E6CFD9; } .imgcenter { text-align: center; margin-top: -25px; }img { border: 2px ridge #000000;}#top { background-color: #0099CC; position: absolute; width: 244px; left: 103px; top: 60px; height: 11px; vertical-align: text-bottom;}#bottom { background-color: 8a0009; position: absolute; left: 354px; top: 159px; width: 719px; height: 20px;}.subglobalNav { position: absolute; width: 245px; left: 2px; top: 1px;}
  3. kaz

    Database Error

    Thanx a million. You're a lifesaver.
  4. kaz

    Database Error

    I'm only using the localhost. Also I want to create a CMS for my website. How do I get around this?
  5. kaz

    Database Error

    Hi,I just put up some code to create a new MYSQL data base, but instead I got an'error creating database' message. Basically I was denied access. how do I change that. Here is the code:<?php$con = mysql_connect("localhost","kaymeis", "buzz1000");if (!$con) { die('Could not connect: ' . mysql_error()); }// Create databaseif (mysql_query("CREATE DATABASE dbpeter",$con)) { echo "Database created"; }else { echo "Error creating database: " . mysql_error(); }// Create table in my_db databasemysql_select_db("my_db", $con);$sql = "CREATE TABLE PETER\ (FirstName varchar(15),LastName varchar(15),Age int)";mysql_query($sql,$con);mysql_close($con);?>
  6. kaz

    Apache

    I dont think I'll be using xampp as I just realized their certificate has expired.
  7. kaz

    Apache

    No, I'm referring to the files in the XAMPP htdocs folder
  8. kaz

    Apache

    All the files have .html extensions. I tried changing them .php, but they still retained the .html extensions
  9. kaz

    Apache

    Yea. Something like that. By the way which folder is PHP in? I'm having a difficult time finding it?
  10. kaz

    Apache

    What I mean is that Can I write a PHP script on HTML KIT(An HTML Editor) and run it on a browser through XAMMPP?
  11. kaz

    Apache

    Is it possible to write a PHP script on HTML KIT and run it on XAMMPP?
  12. kaz

    Apache

    The URL in the Address box is http://localhost, but the page is still blank.
  13. kaz

    Apache

    I just downloaded the XAMPP server. However, when I clicked the Admin button I got a blank browser page saying 'Internet Page Cannot be Displayed." Why is that?
  14. kaz

    Apache

    Hi,Can Anybody which is the best window to download An Apache Server from?
  15. kaz

    PHP Websites

    Is I possible to build PHP Websites on IIS?
  16. kaz

    CSStags

    .maintable which represents the main table of the homepage of my webiste doesn't reflect on my website. It's just the body background that is showing. Here is the stylesheet and look out for .maintable in the sheet: body{background-color:darkgoldenrod;}.h1{color:green;background-color:yellow;text-align:center;}.maintable{width:725;border-style:solid;border-width:thin thin thin thin; border-color:black;background-color:white;}.leftside{font:Arial;color:white;font-size:12;font-weight:bold;width:100;background-color:green;}.takecharge{font:Arial;font-color:black;font-weight:bold;font-size:12;background-color:beige;width:100;}.middle{width:200;background-color:white;font:Arial;font-weight:normal;font-size:12;} The URL for the homepage on mywebsite is www.geocities.com/kkisie2000/main.htmthanxkaz
  17. kaz

    Inbound Links

    What are inbound links
  18. kaz

    Creatinh a links page

    Are the links supposed to be inbound links or links on your website
  19. Can someone show me how to go about creating a links page?thanxkaz
  20. kaz

    Website

    Guess what it finally worked. Thanx a million
  21. kaz

    Website

    Thanx for reminding me. I should known this by now.
  22. kaz

    Website

    This is strange. Although the banners flashing on your screen is what I want to show online, This is not what is showing on my browser. Is that possible?
  23. kaz

    Website

    Sorry for the mishap. It's actually ww.geocities.com/kkisie2000/affiliate.htmAgain, it's www.geocities.com/kkisie2000/affiliate.htm.Sorry! I'm rushing a bit
  24. kaz

    Website

    Hi,two ads on www.geocities.com/kkisie2000/affiliate.com , a page on my webiste. show two ads just before the Traffic Swarm Search Engine that aren't supposed to be on the page. Although I've removed them from my code, they still keep showing on my browser.here is the actual code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><meta name="description" content="Information for your Net Future" /> <meta name="keywords" content="HTML, CSS, Layout, Navigation, Affiliate Market, E-Commerce, Site Promote, SEO" /> <meta name="copyright" content="2006" /> <title>Affiliate Marketing</title><link href="webplanet.css" rel="stylesheet" type="text/css" /><style type="text/css"><!--.style2 {color: #000099}.style3 { color: #003333; font-size: 18px;}--></style></head><body><A HREF="http://www.FreeViral.com/?r=116451"><img src="http://www.FreeViral.com/fv468x60-200.gif" width=468 height=60 border=0 alt="Click Here for Free Traffic!" /><br><font face="Times New Roman, Times, Arial" size="-1">Click Here for your Free Traffic!</font></A><p class="info">Information for your Net Future</p><p class="webtips">webtips</p><p class="htm">affiliate marketing </p><table width="725" class="main"> <tr> <td width="140" valign="top" class="leftside"><table width="100"> <tr> <td class="contents">contents <table width="100"> <tr> <td valign="top" class="webauthoring">webauthoring <table width="100"> <tr> <td class="html"><a href="html.htm" class="html">html</a></td> </tr> </table> <table width="100"> <tr> <td class="html"><a href="css.htm" class="html">css</a></td> </tr> </table> <table width="100"> <tr> <td valign="top" class="webauthoring">webdesign <table width="100"> <tr> <td valign="top" class="layout"><a href="layout.htm">layout</a></td> </tr> </table> <table width="100"> <tr> <td class="layout"><a href="navigation.htm">navigation</a></td> </tr> </table> <table width="100"> <tr> <td class="webauthoring">internet market <table width="100"> <tr> <td class="layout"><a href="affiliate.htm">affiliate market</a> </td> </tr> </table> <table width="100"> <tr> <td class="layout"><a href="e-commerce.htm">E-Commerce</a></td> </tr> </table> <table width="100"> <tr> <td class="layout"><a href="webpromotion.htm">site promote</a> </td> </tr> </table> <table width="100"> <tr> <td class="html"><a href="seo.htm">seo</a></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td><p class="boffo"> <td width="423" valign="top" class="rightside"><table width="298"> <tr> <td width="290" class="otherarticles">Other Articles </td> </tr> </table> <table width="200"> <tr> <td><table width="200"> <tr> <td class="should"><a href="affiliate_internet.htm" class="should">Affiliate Internet Marketing - making a success </a></td> </tr> </table> <table width="200"> <tr> <td class="should"><a href="affilliate_three_steps.htm">three simple steps for newbies to start in affiliate marekting </a></td> </tr> </table> <table width="200"> <tr> <td height="17" class="should"><a href="affiliate.htm">affiliate marketing - the basics </a></td> </tr> </table> <table width="200"> <tr> <td height="17" class="should"><a href="affiliate_profitable.html">5 effective ways to get started building profitable websites </a></td> </tr> </table> <table width="200"> <tr> <td class="should"><a href="affiliate_marketing.html">affiliate marketing </a></td> </tr> </table> <table width="200"> <tr> <td class="should"><a href="affiliate_marketing_promotional.htm">affiliate marketing and promotional materials </a></td> </tr> </table> <table width="200"> <tr> <td class="should"><a href="website_payoff.htm">make your affiliate marketing website payoff </a> </td> </tr> </table></td> </tr> </table> <td width="146" valign="top"class="rightside">col=2<h4 id="features">Affiliiate marketing - the basics</h4> <p class="htmarticle">Imagine that you could earn commissions on a popular brand-name product just by placing a link on your website or in your email. That, my friends, is "Affiliate Marketing"! OK... So it's not quite that simple, but it doesn't have to be much more complicated either</p> <p class="htmarticle">. Let's start with a few definitions. An advertiser, or merchant, is the company who is selling a product. An affiliate, sometimes referred to as a publisher or partner, is another person or company who assists in the promotion of the product and earns a commission for doing so. (That could be you!) In between is the account management service that partners the advertisers with the affiliates and keeps track of the sales and commissions. </p> <p class="htmarticle">If you want to become an affiliate, you first need to choose either a product you want to sell, or an account management service. You will end up with both, but the choice of one will determine the choice for the other. If you choose the product first, the advertiser will direct you to the account management service that they already work with. If you choose the account management service first, they will provide you with a list of merchants that they do business with. </p> <p class="htmarticle">To see if your favorite product or company offers an affiliate program, go to their website and check the menu bar or the bottom of the screen. Look around for the word "affiliate". Click on that link, read about their program and requirements, and fill out their application. Some companies require specific types of websites to place their links on. They will email you all you need to know to get started. </p> <p class="htmarticle">If you don't know what specific product you would like to promote, or if you want to promote several, I recommend browsing the participating merchants on the account management service's website. Try to stick to products or ideas that you are familiar with and passionate about. It will be much easier to market to your visitors if you can add value to the link you want them to click on. Personal recommendations or stories will get way better results than just a banner or solo text link. Give them a reason to "click here". </p> <p class="htmarticle">Welcome to the world of Affiliate Marketing! Good luck with your new venture! </p> <p class="htmarticle"><a href=" http://www.contentmart.com" class="htmarticle">Source: www.contentmart.com</a><p class="htmlarticle"> </p> <div align='left'></div> <p><a href="http://www.FreeViral.com/?r=116451">Send me One Million FREE Guaranteed Visitors</a> </p> <p> <div align='left'><h4><a href='http://veoda.com/advertise/info/info.php?other=internal&where=advertise&more=_signupform&refer=322' target='_blank'><strong>Customers are looking for Your product or service!! Let Veoda direct them to you.</strong></a></h4></div> <script type="text/javascript"><!--google_ad_client = "pub-1312299672482083";google_ad_width = 120;google_ad_height = 600;google_ad_format = "120x600_as";google_ad_type = "text_image";google_ad_channel = "";//--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <script language='JavaScript' type='text/javascript'src='http://www.trafficswarm.com/swarm/links.pl?id=564650&cat=15&num=8'> </script> </p> <table width="100"> <tr> <td width="422" height="523" class="sbitab"><table width="100"> <tr> <td><p class="style3">NEWSFLASH!</p> <p>looking for a three in one experience of Site building, Site hosting and Site Marketing and making serious money as an affiliate? look no further than<a href=".http://www.sitesell.com"> <span class="style2">Sitesell </span></a></p> <p>Want proof? click on the following:</p> <table width="200"> <tr> <td><a href="http://proof.sitesell.com/kay100502980_abc.html" target="_blank">http://proof.sitesell.com/kay100502980_abc.html</a></td> </tr> </table> <p>If you want to make a comparison click on this:</p> <table width="200"> <tr> <td><a href="http://compare.sitesell.com/kay100502980_abc.html"'>http://compare.sitesell.com/kay100502980_abc.html" target="_blank">http://compare.sitesell.com/kay100502980_abc.html </a></td> </tr> </table> <p>If you are a mum looking to stay home with your kids and work at the same time? click this </p> <table width="200"> <tr> <td><a href="http://wahm.sitesell.com/kay100502980_abc.html" target="_blank">http://wahm.sitesell.com/kay100502980_abc.html</a></td> </tr> </table> <p></p></td> </tr> </table> <p><a href="http://proof.sitesell.com/kay100502980_abc.html" target="_blank"></a></p> <a href="http://cpajunction.directtrack.com/index.html?super_affiliate_code=CD222">!</a> <p><br /> <a href="http://compare.sitesell.com/kay100502980_abc.html"'>http://compare.sitesell.com/kay100502980_abc.html" target="_blank">l</a><br /> </p></td> </tr> </table> <p> </p> <p><a href="http://cpajunction.directtrack.com/index.html?super_affiliate_code=CD222">CPAJunction - Make Money</a> </p><a href='http://www.affiliatefuture.com/registration/affiliates.asp?AffiliateID=80692'><img src='http://banners.affiliatefuture.com/120x60.gif' border=0></a>intelliflix.com <a href=http://www.cpasystem.com/ez/ceeepklsi/&dp=0&l=0&p=0>Click Here</a> </p> <p class="boffo"> </p> <table width="100" class="forex"> <tr> <td><p><a href="http://www.forex-affiliate.com/Affiliates/main.aspx?ref=21308" target="_blank"><b>Forex-Affiliate.com - Earn thousands of $$$ per Referral !!!</b></a></p> <p class="htmarticle">Thousands of affiliates cannot be wrong! The Forex (currency trading) industry is the world's biggest market on earth, with a daily turnover of 2.5 trillion dollars! Forex-Affiliate.com joins forces with Easy-Forex™ Trading Platform, a world leader in online currency trading. We have affiliates that are making over $100,000 USD per month why not join it's free and easy we will guide you every step of the way. </p> <ul> <li>Earn Up To $10,000 USD Per Referral!!!<br /> </li> <li>Professional advertising materials (Banners, Text Links, Mini Sites & more)<br /> </li> <li>Accurate and reliable statistics, tracking, reporting and display.<br /> </li> <li>Fast and reliable cash and commission payments.<br /> </li> <li>24x7 Personal account management, for all affiliates and business partners.<br /> </li> <li>Payment options available include wire transfer, credit cards, cheques and Paypal.<br /> </li> <li>Highest conversion rates than any other Forex program GUARANTEED!<br /> </li> <li>Registration is free. <a href="http://www.forex-affiliate.com/Affiliates/main.aspx?ref=21308" target="_blank"><b>Click Here</b></a> to sign up now. </li> </ul></td> </tr> </table > <a href='http://www.affiliatefuture.com/registration/affiliates.asp?AffiliateID=80692'><img src='http://banners.affiliatefuture.com/120x60.gif' border=0></a> <form >action="http://www.trafficswarm.com/swarm/searchw.pl" method="POST"> <table border="1" cellpadding="5" cellspacing="0" bgcolor="#f5f5f5"> <tr> <td><table border="0" cellpadding="0" cellspacing="0"> <input type="hidden" name="refid" value="564650" /> <tr> <td colspan="2" align="center"><a href="http://www.trafficswarm.com/go.cgi?564650"><img src="http://www.trafficswarm.com/images/tslogosm.gif" alt="logo" width="150" height="53" border="0" /></a></td> </tr> <tr> <td colspan="2"><font face=arial size="-1"><b>Search the Web:</b></font></td> </tr> <tr> <td nowrap><input type="text" name="term" size="18" maxlength="100" /> <input type="image" name="submit" src="graphix/go.gif" border="0" /></td> <td> </td> </tr> </table></td> </tr> </table> <a href="http://cpajunction.directtrack.com/index.html?super_affiliate_code=CD222"></a> </form> </td> </tr></table> <p> </p><p align="center" class="home"><a href="index.htm">Home</a></p><p align="center" class="home">©opyright 2006</p><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript">_uacct = "UA-936290-1";urchinTracker();</script></body>Please helpkaz
  25. kaz

    Table

    Hi, I'm trying break my relinace on wysywig editors by coding by hand. Hower, on one page on my website(http://www.geocities.com/kkisie2000/affiliate.htm) The table for"Other Links" has been pushed to the bottom instead of the right side of the page. How do I correct that?ThanxKaz
×
×
  • Create New...