<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Webmaster Forum</title>
		<description>Webmaster discussion on numerous topics including Website design, programming, scripting, hosting, server administration, search engines, and operating systems</description>
		<link>http://www.ozzu.com/</link>
		<lastBuildDate>Fri, 20 Nov 2009 13:03:01 -0800</lastBuildDate>
				<item>
			<dc:creator>motuhanu</dc:creator>
			<pubDate>Thu, 19 Nov 2009 13:58:57 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/php-form-sending-different-emails-based-form-values-t101089.html</guid>
			<link>http://www.ozzu.com/programming-forum/php-form-sending-different-emails-based-form-values-t101089.html</link>
			<title>PHP Form sending to different emails based on form values</title>
			<description><![CDATA[Hi you guys, new here. I looked for some help for this one but cant seem to find what I need. I actually found a post here on the forums that I thought would help me, but I am a complete newbie to PHP so Im not able to piece everything together!<br /><br />OK, so I have a contact form that gives different options for the type of inquiry in a select list. I want each of these inquiry options to trigger a different place/email to send the form to. Ok so heres my coding for the form part:<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />&lt;form action=&quot;formsend.php&quot; method=&quot;post&quot; name=&quot;form&quot; enctype=&quot;text/plain&quot;&gt;<br />Name:<br />&lt;input type=&quot;text&quot; name=&quot;name&quot; size=&quot;30&quot; maxlength=&quot;50&quot; /&gt;<br />&lt;br /&gt;<br />Email:<br />&lt;input type=&quot;text&quot; name=&quot;theiremail&quot; size=&quot;30&quot; maxlength=&quot;50&quot; /&gt;<br />&lt;br /&gt;<br />&lt;br /&gt;<br />Who Are You?<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;spa&quot; /&gt; Spa Representative<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;media&quot; /&gt; Media Representative<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;personal&quot; /&gt; Personal Individual<br />&lt;br /&gt;<br />&lt;br /&gt;<br />What type of inquiry?<br />&lt;br /&gt;<br />&lt;select name=&quot;typeofinquiry&quot;&gt;<br />&lt;option value=&quot;business&quot;&gt;Business&lt;/option&gt;<br />&lt;option value=&quot;product&quot; selected=&quot;selected&quot;&gt;Product&lt;/option&gt;<br />&lt;option value=&quot;publicrel&quot;&gt;Public Relations&lt;/option&gt;<br />&lt;option value=&quot;site&quot;&gt;Website&lt;/option&gt;<br />&lt;option value=&quot;other&quot;&gt;Other&lt;/option&gt;<br />&lt;/select&gt;<br />&lt;br /&gt;<br />&lt;textarea rows=&quot;5&quot; cols=&quot;40&quot; name=&quot;question&quot;&gt;&lt;/textarea&gt;<br />&lt;br /&gt;<br />&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Send&quot;&gt;<br />&lt;input type=&quot;reset&quot; name=&quot;reset&quot; value=&quot;Clear&quot;&gt;<br />&lt;/form&gt; <br /></pre><br /><br />And then the part that I am stuck on, my formsend.php file:<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />&lt;?php<br /><br />$mailto = $_POST&#91;typeofinquiry&#93;;<br />  <br />if($mailto == business)<br />  <br />{$email = &quot;businessblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == product)<br /><br />{$email = &quot;productblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == publicrel)<br /><br />{$email = &quot;publicrelblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == site)<br /><br />{$email = &quot;siteblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == other)<br /><br />{$email = &quot;otherblah@whatever&#91;dot&#93;com&quot;;};<br /><br />$subject = &quot;Contact Us&quot;;<br />$name = $_REQUEST&#91;name&#93; ;<br />$who = $_REQUEST&#91;who&#93; ;<br />$theiremail = $_REQUEST&#91;theiremail&#93; ;<br />$question = $_REQUEST&#91;question&#93; ;<br />$headers = &quot;Form from: $name, $theiremail&quot;;<br />$sent = mail($mailto, $subject, $question, $headers) ;<br />if($sent)<br />{print &quot;Your mail was sent successfully&quot;; }<br />else<br />{print &quot;We encountered an error sending your mail&quot;; }<br /><br />?&gt;<br /></pre><br /><br />Please help me with this ASAP, I have a bit of a deadline, help is much appreciated @_@]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>motuhanu</dc:creator>
			<pubDate>Thu, 19 Nov 2009 13:56:17 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/php-form-sending-different-emails-based-form-values-t101088.html</guid>
			<link>http://www.ozzu.com/programming-forum/php-form-sending-different-emails-based-form-values-t101088.html</link>
			<title>PHP Form sending to different emails based on form values</title>
			<description><![CDATA[[EDIT] CAN someone delete this post, I posted it in the wrong section, please check the coding forum section, i didnt mean to put it in the tutorial section, thank you! ]<br /><br /><br />Hi you guys, new here. I looked for some help for this one but cant seem to find what I need. I actually found a post here on the forums that I thought would help me, but I am a complete newbie to PHP so Im not able to piece everything together!<br /><br />OK, so I have a contact form that gives different options for the type of inquiry in a select list. I want each of these inquiry options to trigger a different place/email to send the form to. Ok so heres my coding for the form part:<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />&lt;form action=&quot;formsend.php&quot; method=&quot;post&quot; name=&quot;form&quot; enctype=&quot;text/plain&quot;&gt;<br />Name:<br />&lt;input type=&quot;text&quot; name=&quot;name&quot; size=&quot;30&quot; maxlength=&quot;50&quot; /&gt;<br />&lt;br /&gt;<br />Email:<br />&lt;input type=&quot;text&quot; name=&quot;theiremail&quot; size=&quot;30&quot; maxlength=&quot;50&quot; /&gt;<br />&lt;br /&gt;<br />&lt;br /&gt;<br />Who Are You?<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;spa&quot; /&gt; Spa Representative<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;media&quot; /&gt; Media Representative<br />&lt;br /&gt;<br />&lt;input type=&quot;radio&quot; name=&quot;who&quot; value=&quot;personal&quot; /&gt; Personal Individual<br />&lt;br /&gt;<br />&lt;br /&gt;<br />What type of inquiry?<br />&lt;br /&gt;<br />&lt;select name=&quot;typeofinquiry&quot;&gt;<br />&lt;option value=&quot;business&quot;&gt;Business&lt;/option&gt;<br />&lt;option value=&quot;product&quot; selected=&quot;selected&quot;&gt;Product&lt;/option&gt;<br />&lt;option value=&quot;publicrel&quot;&gt;Public Relations&lt;/option&gt;<br />&lt;option value=&quot;site&quot;&gt;Website&lt;/option&gt;<br />&lt;option value=&quot;other&quot;&gt;Other&lt;/option&gt;<br />&lt;/select&gt;<br />&lt;br /&gt;<br />&lt;textarea rows=&quot;5&quot; cols=&quot;40&quot; name=&quot;question&quot;&gt;&lt;/textarea&gt;<br />&lt;br /&gt;<br />&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Send&quot;&gt;<br />&lt;input type=&quot;reset&quot; name=&quot;reset&quot; value=&quot;Clear&quot;&gt;<br />&lt;/form&gt; <br /></pre><br /><br />And then the part that I am stuck on, my formsend.php file:<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />&lt;?php<br /><br />$mailto = $_POST&#91;typeofinquiry&#93;;<br />  <br />if($mailto == business)<br />  <br />{$email = &quot;businessblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == product)<br /><br />{$email = &quot;productblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == publicrel)<br /><br />{$email = &quot;publicrelblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == site)<br /><br />{$email = &quot;siteblah@whatever&#91;dot&#93;com&quot;;}<br /><br />elseif($mailto == other)<br /><br />{$email = &quot;otherblah@whatever&#91;dot&#93;com&quot;;};<br /><br />$subject = &quot;Contact Us&quot;;<br />$name = $_REQUEST&#91;name&#93; ;<br />$who = $_REQUEST&#91;who&#93; ;<br />$theiremail = $_REQUEST&#91;theiremail&#93; ;<br />$question = $_REQUEST&#91;question&#93; ;<br />$headers = &quot;Form from: $name, $theiremail&quot;;<br />$sent = mail($mailto, $subject, $question, $headers) ;<br />if($sent)<br />{print &quot;Your mail was sent successfully&quot;; }<br />else<br />{print &quot;We encountered an error sending your mail&quot;; }<br /><br />?&gt;<br /></pre><br /><br />Please help me with this ASAP, I have a bit of a deadline, help is much appreciated @_@]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>The_torst</dc:creator>
			<pubDate>Thu, 19 Nov 2009 06:11:12 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/jscript-httprequest-picture-binary-t101085.html</guid>
			<link>http://www.ozzu.com/programming-forum/jscript-httprequest-picture-binary-t101085.html</link>
			<title>JScript: HTTPrequest picture in binary?</title>
			<description><![CDATA[Hi guys<br /><br />Is it possible to use classic ASP (jscript or VBscript) to download a specific image from a URL in binary format?<br /><br />Its for sending that particular picture as multipart/form-data later on.<br /><br />thanks!]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>gazzhop</dc:creator>
			<pubDate>Thu, 19 Nov 2009 05:22:11 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/javascript-menu-problem-t101080.html</guid>
			<link>http://www.ozzu.com/programming-forum/javascript-menu-problem-t101080.html</link>
			<title>Javascript Menu Problem</title>
			<description><![CDATA[I have a script (php) which generates a table of categories then under each category another table of products (product tables have ids begining with tb then a number). I am trying to write some javascript that when you click on the display property goes from none to block, but then when you click on another it hide the open one.<br /><br />Help!!!]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>ancientmysts</dc:creator>
			<pubDate>Wed, 18 Nov 2009 17:04:08 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/php-email-sent-half-blank-t101076.html</guid>
			<link>http://www.ozzu.com/programming-forum/php-email-sent-half-blank-t101076.html</link>
			<title>PHP email sent half blank?</title>
			<description><![CDATA[First time poster, so this would be my introduction as well.  Self taught HTML (so my code is usually a mess Im sure).  My boss knows that I know a little bit about websites, so he asked me to build one for him.  He has a small construction company.  What started out as a simple task, got bigger and bigger and I feel a little over my head, but still trying to please the boss, as hes a personal friend as well.  <br /><br />He asked me to create a form on the website where users could type out information to receive an estimate or to send in a testimonial that would kick out to an email.  I looking into it saw that PHP was the way to go.  I hunted around and found a tutorial on how to do it, which was from tutvid on youtube.  Finally to the point where Im about ready to go live with the site and tested my code.<br /><br />I would receive the body of my email, the text that I put in that the users input follows, but the text the user puts in comes in blank every time.  Ive searched the forums and only got 2 threads, 1 of which wasnt what I was looking for, the other was just bad punctuation on the PHP code, and his was fixed.  If someone could help me out here it would be appreciated.  Below is the code Im using. <br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />&lt;?php<br /><br />/* subject and email variables */<br /><br />    $emailSubject = Customer sending in a testimonial;<br />    $webMaster = NOT ALLOWED TO POST EXTERNAL LINKS;<br />    <br />/* gathering data variables */<br /><br />    $nameField = $_POST&#91;name&#93;;<br />    $locationField = $_POST&#91;location&#93;;<br />    $servicesField = $_POST&#91;services&#93;;<br />    $experienceField = $_POST&#91;experience&#93;;<br />    <br />    $body = &lt;&lt;&lt;EOD<br />&lt;br&gt;&lt;hr&gt;&lt;br&gt;<br />Name: $name &lt;br&gt;<br />Location: $location &lt;br&gt;<br />Services Received: $services &lt;br&gt;<br />Overall Experience: $experience &lt;br&gt;<br />EOD;<br /><br />	$headers = &quot;From: $emailrn&quot;;<br />    $headers .= &quot;Content-type: text/htmlrn&quot;;<br />    $success = mail($webMaster, $emailSubject, $body, $headers);<br />    <br />/* results rendered as html */<br /><br />	$theResults = &lt;&lt;&lt;EOD<br />/* I have put a thank you page here, just didnt want to include all of that code */<br />EOD;<br />echo &quot;$theResults&quot;;<br /><br />?&gt;<br /></pre><br /><br />The email I receive ends up looking like this....<br /><br />Name:<br />Services:<br />Location:<br />Overall Experience:<br /><br />...with no responses.  Any and all help would be appreciated, and I thank you for your time and help in advance.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>hgun77</dc:creator>
			<pubDate>Wed, 18 Nov 2009 15:49:18 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/javascript-read-frame-url-t101074.html</guid>
			<link>http://www.ozzu.com/programming-forum/javascript-read-frame-url-t101074.html</link>
			<title>Javascript read frame url</title>
			<description><![CDATA[I have a html page with is contain of 2 frames. Frame A and Frame B. I cant read Frame As src through Frame B javascript.<br /><br />window.parent.frames[frameA].location.href<br /><br />It can read if all are within same domain, Ive google it and know it is about browser restriction on security issue on cross domain. But I cant found any solution for this case. <br /><br />Any help? Thanks?!]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
				<item>
			<dc:creator>MaryJane</dc:creator>
			<pubDate>Wed, 18 Nov 2009 10:18:42 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/catchable-fatal-error-t101068.html</guid>
			<link>http://www.ozzu.com/programming-forum/catchable-fatal-error-t101068.html</link>
			<title>Catchable fatal error:</title>
			<description><![CDATA[Hello!<br /><br />I found a solution on your forum, it says to make a new topic with the complete error and the code around the line in the error.<br /><br />I hope somebody can help me.<br /><br />	<br />Catchable fatal error: Object of class stdClass could not be converted to string in /var/www/***/***/HTML/administrator/components/com_lovefactory/helper.php on line 926<br /><br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"> function showFieldInEditProfile($field, $default, $page = 2)<br />  {<br />    if (!$field-&gt;published)<br />    {<br />      return false;<br />    }<br /><br />    $output = ;<br /><br />    if ($default !== false)<br />    {<br />      if ($field-&gt;type_id == 10)<br />      {<br />        $default = $default-&gt;sex;<br />      }<br />      elseif ($field-&gt;type_id == 11)<br />      {<br />        $default = $default-&gt;looking;<br />      }<br />      else<br />      {<br />        $default = $default-&gt;{field_ . $field-&gt;id};<br />      }<br />    }<br /><br />    $output .= self::fieldRequiredMessage($field);<br />    $output .= &lt;tr&gt;;<br />    $output .=  &lt;td&gt; . self::showLabel($field, $page) . &lt;/td&gt;;<br />    $output .=  &lt;td&gt; . self::showDescription($field) . &lt;/td&gt;;<br /><br />    if ($default === false)<br />    {<br />      $output .=  &lt;td&gt; . self::convertFieldToEdit($field, $page);<br />    }<br />    else<br />    {<br />      $output .=  &lt;td&gt; . self::convertFieldToEdit($field, $page, array(defaults =&gt; array(values =&gt; $default)));<br />    }<br />    $output .=  &lt;/td&gt;;<br />    $output .= &lt;/tr&gt;;<br /><br />    return $output;<br />  }<br /><br />  function showFieldInViewProfile($field, $defaults, &amp;$visibility = array())<br />  {<br />    if (!$field-&gt;published)<br />    {<br />      return false;<br />    }<br /><br />    if (isset($visibility&#91;$defaults-&gt;user_id&#93;&#91;$field-&gt;id&#93;) &amp;&amp; $visibility&#91;$defaults-&gt;user_id&#93;&#91;$field-&gt;id&#93; == 0)<br />    {<br />      return false;<br />    }<br /><br />    $output = ;<br /><br />    if ($field == null)<br />    {<br />      return $output;<br />    }<br /><br />    if (!$field-&gt;system)<br />    {<br />      if ($field-&gt;type_id == 10)<br />      {<br />        $defaults = $defaults-&gt;sex;<br />      }<br />      elseif ($field-&gt;type_id == 11)<br />      {<br />        $defaults = $defaults-&gt;looking;<br />      }<br />      else<br />      {<br />        $defaults = $defaults-&gt;{field_ . $field-&gt;id};<br />      }<br /><br />      #var_dump($defaults);<br />      #$defaults = $defaults-&gt;{field_ . $field-&gt;id};<br />    }<br /><br />    $output .= &lt;tr&gt;;<br /><br />    if (!in_array($field-&gt;type_id, array(9)))<br />    {<br />      $output .=  &lt;td style=&quot;padding-right: 10px;&quot;&gt; . self::showLabel($field, 6) . &lt;/td&gt;;<br />      $colspan = 1;<br />    }<br />    else<br />    {<br />      $colspan = 2;<br />    }<br /><br />    $output .=  &lt;td colspan=&quot; .$colspan .  &quot;&gt; . self::convertFieldToShow($field, $defaults);<br />    $output .=  &lt;/td&gt;;<br />    $output .= &lt;/tr&gt;;<br /><br />    return $output;<br />  }<br /><br />  function showFieldInSearch($field)<br />  {<br />    if (!$field-&gt;published)<br />    {<br />      return false;<br />    }<br /><br />    $field-&gt;required = false;<br /><br />    $output = ;<br /><br />    $output .= self::fieldRequiredMessage($field);<br />    $output .= &lt;tr&gt;;<br />    $output .=  &lt;td&gt; . self::showLabel($field, 3) . &lt;/td&gt;;<br />    $output .=  &lt;td&gt; . self::convertFieldToEdit($field, 3, array(defaults =&gt; array()));<br />    $output .=  &lt;/td&gt;;<br />    $output .= &lt;/tr&gt;;<br /><br />    return $output;<br />  }<br /><br />  function createUpdateQuery($field)<br />  {<br />    switch ($field-&gt;type_id)<br />    {</pre>]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 7</description>
		</item>
				<item>
			<dc:creator>dmc_gryphonit</dc:creator>
			<pubDate>Wed, 18 Nov 2009 04:43:49 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/htaccess-and-htpasswd-query-t101063.html</guid>
			<link>http://www.ozzu.com/programming-forum/htaccess-and-htpasswd-query-t101063.html</link>
			<title>htaccess and htpasswd query</title>
			<description><![CDATA[its been a long time since i used .htaccess with .htpasswd but i need to as a quick fix for now. i am having a little problem in that when i put in the user name and password i get this error: <p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesnt understand how to supply the credentials required.</pre><br /><br />my .htaccess is this:<p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;"><br />AuthType Basic<br />AuthName &quot;My Protected Area&quot;<br />AuthUserFile /var/www/html/pwdtest/.htpasswd<br />Require valid-user</pre><br /><br />and my .htpasswd is this: <p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">danny:$apr1$hpCJd/..$rXXEo/Xlpzt4NITZFWaZQ1</pre><br /><br />does anyone know what is going wrong? both are uploaded into the same folder for testing. <br /><br />thanks in advanced]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 1</description>
		</item>
				<item>
			<dc:creator>astrid+</dc:creator>
			<pubDate>Tue, 17 Nov 2009 16:49:24 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/noob-question-t101056.html</guid>
			<link>http://www.ozzu.com/programming-forum/noob-question-t101056.html</link>
			<title>noob question ^_^</title>
			<description><![CDATA[Hello all,<br /><br />As the subject indicates, I am an absolute novice in programming. Im trying to compile a program I wrote in C, using the &quot;gcc filename.c&quot; command, but it keeps saying: &quot;-bash: gcc: command not found.&quot; I also tried typing in &quot;gcc filename.c -o filename,&quot; but to no avail. I am working on a Mac, using Terminal. Do any of you know why this is the case?<br /><br />Ill probably wind up posting a barrage of other noob questions in the future.. just warning you all.]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 3</description>
		</item>
				<item>
			<dc:creator>sivakumar</dc:creator>
			<pubDate>Tue, 17 Nov 2009 06:47:24 -0800</pubDate>
			<guid>http://www.ozzu.com/programming-forum/need-help-accessing-dll-from-javascript-t101052.html</guid>
			<link>http://www.ozzu.com/programming-forum/need-help-accessing-dll-from-javascript-t101052.html</link>
			<title>Need a help in accessing DLL from Javascript</title>
			<description><![CDATA[Hi,<br /><br />Im trying to access a DLL created on VC++ from Javascript. Is there any way to achieve this?<br /><br />Tried all the below steps:<br />1. First, i have tried accessing the COM DLL from my PHP script, there am getting only the object and am unable to access the methods.<br />2. I tried the same thing in javascript by giving the class ID.<br />eg:<br /><p>code:</p><pre style="border:1px solid #000000; background-color:#eeeeee;">		<br />&lt;object id=&quot;my_obj&quot; classid=&quot;clsid:9142ECC1-D591-405D-8F34-AFF5D0A57704&quot;&gt;&lt;/object&gt;<br />&lt;input type=&quot;button&quot; value=&quot;Call into COM object&quot; onclick=&quot;alert(my_obj);&quot; /&gt;<br /></pre><br />After clicking the button am getting an alert saying [Object], when i try to access the method it throws an error saying Object doesnt support the property or method.<br /><br />Note: I have registered the COM DLL.<br /><br />Help would be much appreciated.<br />Thanks in advance.<br /><br />--<br />Siva]]>&lt;br /&gt;&lt;br /&gt;Topic Replies: 0</description>
		</item>
			</channel>
</rss>