<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>HTML Help</title>
  <link>http://www.htmlcodetutorial.com/help/index.php</link>
  <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  <language>english</language>
  <copyright>(c) Copyright 2009 by HTML Help</copyright>
  <managingEditor>design@htmlcodetutorial.com</managingEditor>
  <webMaster>design@htmlcodetutorial.com</webMaster>
  <pubDate>Sat Nov 21, 2009 12:29 pm</pubDate>
  <lastBuildDate>Sat Nov 21, 2009 12:29 pm</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>HTML Help</title>
    <url></url>
    <link>http://www.htmlcodetutorial.com/help/</link>
    <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  </image>

                                      <item>
                                        <title>cgi captcha for a form</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56386#56386</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Nov 19, 2009 11:02 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Maybe this would help. It's easier:&lt;br /&gt;
&lt;br /&gt;
 &lt;a href=&quot;http://www.white-hat-web-design.co.uk/articles/php-captcha.php&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;PHP Captcha Security Images&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
We're here to help so we need code you have used and are having trouble with. I would love to have the time to code it all for you, but I can't. Please try and post back if you have problems with the coding. Or, at least post exactly what you are not understanding. You have your form made and installed. The Captcha is just as easy.&lt;br /&gt;
&lt;br /&gt;
Maybe?:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://extensions.joomla.org/extensions/access-a-security/captcha/3176&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;EasyCaptcha&lt;/a&gt;</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56386#56386</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Thu Nov 19, 2009 11:02 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=56386#56386</guid>
                                      </item>
                                      <item>
                                        <title>c++</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56381#56381</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=28733'&gt;smithdavid4321&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Nov 19, 2009 9:32 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      When you compile the application at that time .exe file will be created at the place where you have been saved the program. just run the program and check the saved location. hope this will help you to solve your problem.</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56381#56381</comments>
                                        <author>smithdavid4321</author>
                                        <pubDate>Thu Nov 19, 2009 9:32 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=56381#56381</guid>
                                      </item>
                                      <item>
                                        <title>USING .DLL FILE IN HTML AND JAVASCRIPT</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56011#56011</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=28531'&gt;Gennady46&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Nov 10, 2009 5:41 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi, I wrote the following class in C++ just to test:&lt;br /&gt;
&lt;br /&gt;
#pragma once&lt;br /&gt;
#include &amp;lt;windows.h&amp;gt;&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
namespace Test1 {&lt;br /&gt;
&lt;br /&gt;
public ref class Class1&lt;br /&gt;
{ public: void Web_Code()  &lt;br /&gt;
   { DeleteFile(&amp;quot;c:\\Test_Web.txt&amp;quot;); &lt;br /&gt;
     printf(&amp;quot;Hello&amp;quot;); &lt;br /&gt;
    }&lt;br /&gt;
};&lt;br /&gt;
}&lt;br /&gt;
And built it. So I got Web_Test.dll&lt;br /&gt;
I uploaded to my web folder Web_Test.dll&lt;br /&gt;
And inserted html onto the  web page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;OBJECT id=&amp;quot;control&amp;quot;&lt;br /&gt;
        classid=&amp;quot;http:Web_Test.dll#Test1.Class1&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;/OBJECT&amp;gt;&lt;br /&gt;
 &amp;lt;script language=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
      function doScript()&lt;br /&gt;
       {&lt;br /&gt;
        control.Web_Code();&lt;br /&gt;
       }&lt;br /&gt;
       &amp;lt;/script&amp;gt;&lt;br /&gt;
   &amp;lt;body onLoad=&amp;quot;javascript&amp;#058;doScript();&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What it suppose to do is to delete a file on a hard drive and print &amp;quot;Hello&amp;quot; on a screen as a web page is&lt;br /&gt;
being opened.&lt;br /&gt;
&lt;br /&gt;
But it does not work!&lt;br /&gt;
Can you tell me what is wrong here.&lt;br /&gt;
Thanks in advance, G.G.</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=56011#56011</comments>
                                        <author>Gennady46</author>
                                        <pubDate>Tue Nov 10, 2009 5:41 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=56011#56011</guid>
                                      </item>
                                      <item>
                                        <title>create round rectangle in html</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55995#55995</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=12865'&gt;sticks464&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Nov 10, 2009 4:47 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Try one of the techniques &lt;a href=&quot;http://www.cssjuice.com/25-rounded-corners-techniques-with-css/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55995#55995</comments>
                                        <author>sticks464</author>
                                        <pubDate>Tue Nov 10, 2009 4:47 am</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=55995#55995</guid>
                                      </item>
                                      <item>
                                        <title>Code Error for Login Page- I must be overlooking something!</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55620#55620</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=28315'&gt;juboe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Oct 27, 2009 5:32 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I see that this as moved but where to???</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55620#55620</comments>
                                        <author>juboe</author>
                                        <pubDate>Tue Oct 27, 2009 5:32 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=55620#55620</guid>
                                      </item>
                                      <item>
                                        <title>mySQL Newbie</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55308#55308</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=21455'&gt;curtranhome&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat Oct 17, 2009 8:21 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I'm a newbie when it comes to mySQL, I want to know what I need to be able to use it, I know I need php, but what else do I need and how do I use it?</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=55308#55308</comments>
                                        <author>curtranhome</author>
                                        <pubDate>Sat Oct 17, 2009 8:21 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=55308#55308</guid>
                                      </item>
                                      <item>
                                        <title>Status Traffic Light page</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=54060#54060</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Sep 02, 2009 8:08 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Best help I can give:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://people.usm.maine.edu/houser/bblight/index.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Big Brother Traffic Light&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://tinyurl.com/kvq653&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Netsight Traffic Lights&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/303564dc-3531-2a10-0fa3-be6426c3d61b&amp;amp;overridelayout=true&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Seeing Red - Does Your Traffic Light have only Three Colors?&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://nsit.uchicago.edu/announcements/archive/2008/03/traffic.shtml&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Looking for the NSIT Traffic Light?&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;hs=Wes&amp;amp;q=Status+Traffic+Light+page&amp;amp;start=10&amp;amp;sa=N&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Other sources&lt;/a&gt;</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=54060#54060</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Wed Sep 02, 2009 8:08 am</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=54060#54060</guid>
                                      </item>
                                      <item>
                                        <title>help on index.cgi</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=54006#54006</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=27547'&gt;way2friendship&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Sep 01, 2009 12:46 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      &lt;span style=&quot;color: darkred&quot;&gt;Please DO NOT hi-jack other people's post, but start your own thread. Mod&lt;br /&gt;
&lt;br /&gt;
Moved from &lt;a href=&quot;http://www.htmlcodetutorial.com/help/sutra54006.html&amp;amp;highlight=#54006&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;HERE&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
I'm working on a site located at &lt;a href=&quot;http://www.way2friendship.com/&quot; target=&quot;_blank&quot;&gt;http://www.way2friendship.com/&lt;/a&gt; It's written all in CGI and is running just fine. I need to make edits on the map page for the directions. I loaded the file into Notepad and edited the directions. Saved everything then uploaded it to the hosting server. Their is an index.cgi file locatin in the root as well as in the site folder. Since the site is displaying after the upload. I thought everything uploaded with out any errors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I hope one of you here can shed some information on this problem...</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=54006#54006</comments>
                                        <author>way2friendship</author>
                                        <pubDate>Tue Sep 01, 2009 12:46 am</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=54006#54006</guid>
                                      </item>
                                      <item>
                                        <title>help on index.cgi</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=53984#53984</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Aug 31, 2009 3:17 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      techwarrior.net looks like just a ISP service with some additional services like file storage. I doubt they will provide much for you if they did not provide a Control Panel with your paid hosting service. Unless you need file storage for other reason, I would definitely move from there. GoDaddy.com is not the best choice.&lt;br /&gt;
&lt;br /&gt;
Hosting Info:&lt;br /&gt;
&lt;br /&gt;
Web Hosting Jury: &lt;a href=&quot;http://www.webhostingjury.com/&quot; target=&quot;_blank&quot;&gt;http://www.webhostingjury.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.rankpulse.com/www.siteground.com&quot; target=&quot;_blank&quot;&gt;http://www.rankpulse.com/www.siteground.com&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.siteground.com/&quot; target=&quot;_blank&quot;&gt;http://www.siteground.com/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://b2evolution.net/web-hosting/top-quality-best-webhosting.php&quot; target=&quot;_blank&quot;&gt;http://b2evolution.net/web-hosting/top-quality-best-webhosting.php&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.hosting-shopper.com/&quot; target=&quot;_blank&quot;&gt;http://www.hosting-shopper.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Useful Tools/Info:&lt;br /&gt;
&lt;br /&gt;
Web Design Tips: &lt;a href=&quot;http://www.webweaver.nu/html-tips/&quot; target=&quot;_blank&quot;&gt;http://www.webweaver.nu/html-tips/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://hapedit.free.fr/tools.php&quot; target=&quot;_blank&quot;&gt;http://hapedit.free.fr/tools.php&lt;/a&gt;&lt;br /&gt;
Webmaster Frequently Asked Questions: &lt;a href=&quot;http://www.thesitewizard.com/faqs/&quot; target=&quot;_blank&quot;&gt;http://www.thesitewizard.com/faqs/&lt;/a&gt;&lt;br /&gt;
How to Register Your Own Domain Name: &lt;a href=&quot;http://www.thesitewizard.com/archive/registerdomain.shtml&quot; target=&quot;_blank&quot;&gt;http://www.thesitewizard.com/archive/registerdomain.shtml&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
SEO Tools:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.htmlgoodies.com/beyond/webmaster/toolbox/article.php/3828801&quot; target=&quot;_blank&quot;&gt;http://www.htmlgoodies.com/beyond/webmaster/toolbox/article.php/3828801&lt;/a&gt; (Search Engine Optimization (SEO): Getting Started)&lt;br /&gt;
&lt;a href=&quot;http://seo.alleycode.com/freetools.htm&quot; target=&quot;_blank&quot;&gt;http://seo.alleycode.com/freetools.htm&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.websiteoptimization.com/services/analyze/&quot; target=&quot;_blank&quot;&gt;http://www.websiteoptimization.com/services/analyze/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Redirects and SEO: &lt;a href=&quot;http://www.allthingssem.com/redirects-and-seo/&quot; target=&quot;_blank&quot;&gt;http://www.allthingssem.com/redirects-and-seo/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Meta Tag Generators:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.ssmedia.com/utilities/meta/&quot; target=&quot;_blank&quot;&gt;http://www.ssmedia.com/utilities/meta/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.1stsitefree.com/meta_gen.htm&quot; target=&quot;_blank&quot;&gt;http://www.1stsitefree.com/meta_gen.htm&lt;/a&gt;&lt;br /&gt;
So, You Want A Meta Command, Huh?: &lt;a href=&quot;http://www.htmlgoodies.com/tutorials/getting_started/article.php/3479471&quot; target=&quot;_blank&quot;&gt;http://www.htmlgoodies.com/tutorials/getting_started/article.php/3479471&lt;/a&gt;&lt;br /&gt;
Online Meta Tag Generator: &lt;a href=&quot;http://www.webweaver.nu/tools/meta-generator/&quot; target=&quot;_blank&quot;&gt;http://www.webweaver.nu/tools/meta-generator/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Those may be of help if you go elsewhere.</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=53984#53984</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Mon Aug 31, 2009 3:17 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=53984#53984</guid>
                                      </item>
                                      <item>
                                        <title>HTML Coding problem</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=52955#52955</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=26917'&gt;tcough&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat Jul 25, 2009 1:30 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where order_status_id = '16' group by month(date_added)' at line 1&lt;br /&gt;
Error No: 1064&lt;br /&gt;
select count(*) as total from `order` where date_added between '2009-03-25' and '2009-07-26' where order_status_id = '16' group by month(date_added)&lt;br /&gt;
&lt;br /&gt;
   I would take some knowledge on this matter. I can not see my sales that I make on my administration page of my web site. The only way is to check Pay Pal.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: darkred&quot;&gt;Moved to &amp;quot;Others&amp;quot; from &amp;quot;Introduce Yourself&amp;quot;. Mod.&lt;/span&gt;</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=52955#52955</comments>
                                        <author>tcough</author>
                                        <pubDate>Sat Jul 25, 2009 1:30 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=52955#52955</guid>
                                      </item>
                                      <item>
                                        <title>.cgi</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51396#51396</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun May 31, 2009 4:25 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Read up on it, &amp;quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Common_Gateway_Interface&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Common Gateway Interface&lt;/a&gt;&amp;quot;, then check and see if your hosting service has one or allows it.&lt;br /&gt;
&lt;br /&gt;
The code for that cgi is given &lt;a href=&quot;http://www.htmlcodetutorial.com/index_famsupp_91.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;HERE&lt;/a&gt;.</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51396#51396</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Sun May 31, 2009 4:25 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=51396#51396</guid>
                                      </item>
                                      <item>
                                        <title>My system does not open HTML docs and i have no idea why?</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51249#51249</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue May 26, 2009 2:13 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      What operating system are you using? Your browser doesn't seem to be having any problems displaying html web pages so what were you trying to use to view HTML on your computer?</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51249#51249</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Tue May 26, 2009 2:13 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=51249#51249</guid>
                                      </item>
                                      <item>
                                        <title>irc applet</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51124#51124</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=26013'&gt;ianlou&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri May 22, 2009 8:23 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      this was the error details after posting the applet given, please help me...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red&quot;&gt;&lt;/span&gt;Java Plug-in 1.6.0_13&lt;br /&gt;
Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM&lt;br /&gt;
User home directory = C:\Documents and Settings\user&lt;br /&gt;
----------------------------------------------------&lt;br /&gt;
c:   clear console window&lt;br /&gt;
f:   finalize objects on finalization queue&lt;br /&gt;
g:   garbage collect&lt;br /&gt;
h:   display this help message&lt;br /&gt;
l:   dump classloader list&lt;br /&gt;
m:   print memory usage&lt;br /&gt;
o:   trigger logging&lt;br /&gt;
q:   hide console&lt;br /&gt;
r:   reload policy configuration&lt;br /&gt;
s:   dump system and deployment properties&lt;br /&gt;
t:   dump thread list&lt;br /&gt;
v:   dump thread stack&lt;br /&gt;
x:   clear classloader cache&lt;br /&gt;
0-5: set trace level to &amp;lt;n&amp;gt;&lt;br /&gt;
----------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sun.plugin2.main.client.PluginMain: unrecognized message ID 46&lt;br /&gt;
load: class IRCApplet.class not found.&lt;br /&gt;
java.lang.ClassNotFoundException: IRCApplet.class&lt;br /&gt;
	at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)&lt;br /&gt;
	at java.lang.ClassLoader.loadClass(Unknown Source)&lt;br /&gt;
	at java.lang.ClassLoader.loadClass(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)&lt;br /&gt;
	at java.lang.Thread.run(Unknown Source)&lt;br /&gt;
Caused by: java.io.IOException: Stream closed.&lt;br /&gt;
	at java.net.PlainSocketImpl.available(Unknown Source)&lt;br /&gt;
	at java.net.SocketInputStream.available(Unknown Source)&lt;br /&gt;
	at java.io.BufferedInputStream.available(Unknown Source)&lt;br /&gt;
	at sun.net.www.http.ChunkedInputStream.readAheadNonBlocking(Unknown Source)&lt;br /&gt;
	at sun.net.www.http.ChunkedInputStream.readAhead(Unknown Source)&lt;br /&gt;
	at sun.net.www.http.ChunkedInputStream.available(Unknown Source)&lt;br /&gt;
	at sun.net.www.MeteredStream.available(Unknown Source)&lt;br /&gt;
	at java.io.BufferedInputStream.read(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)&lt;br /&gt;
	at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)&lt;br /&gt;
	at java.security.AccessController.doPrivileged(Native Method)&lt;br /&gt;
	... 7 more&lt;br /&gt;
Exception: java.lang.ClassNotFoundException: IRCApplet.class</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=51124#51124</comments>
                                        <author>ianlou</author>
                                        <pubDate>Fri May 22, 2009 8:23 am</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=51124#51124</guid>
                                      </item>
                                      <item>
                                        <title>Developing/integrating a pay-per-click solution</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=50778#50778</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=25870'&gt;dkny&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon May 11, 2009 8:32 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I am looking to develop my own pay-per-click solution for a website.  Not Adsense but my own solution to integrate on my wesite like how Google has the Adwords program.  I want my own program like that a user can deposit money and pay per click either through a fixed cost or bidding system.&lt;br /&gt;
&lt;br /&gt;
I would greatly appreciate if someone can tell me if this is something I would need to develop from scratch or if there are already made solutions that I can integrate to my site.  Also, if I were to develop it from scratch what kind of person/specialty I would need to develop this.  Thanks!</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=50778#50778</comments>
                                        <author>dkny</author>
                                        <pubDate>Mon May 11, 2009 8:32 pm</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=50778#50778</guid>
                                      </item>
                                      <item>
                                        <title>Director Lingo, if anyone can help</title>
                                        <link>http://www.htmlcodetutorial.com/help/viewtopic.php?p=50491#50491</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://www.htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=698'&gt;kanenas&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat May 02, 2009 11:07 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Make sure you put the breakpoint on a line within the event handler, not on the &amp;quot;on mouseUp&amp;quot; line.  The fact that it's a mouseUp event has no affect on the debugger.  If the debugger still isn't stopping at the breakpoint, the line isn't being reached because either the handler isn't registering for the event or the event isn't firing (the latter seems unlikely).</description>
                                        <comments>http://www.htmlcodetutorial.com/help/viewtopic.php?p=50491#50491</comments>
                                        <author>kanenas</author>
                                        <pubDate>Sat May 02, 2009 11:07 am</pubDate>
                                        <guid isPermaLink="true">http://www.htmlcodetutorial.com/help/viewtopic.php?p=50491#50491</guid>
                                      </item></channel></rss>