<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[Tech Support Forum - Web Design & Programming]]></title>
		<link>http://www.techsupportforum.com</link>
		<description><![CDATA[Discussion of web design, and server-side & client-side scripting]]></description>
		<language>en</language>
		<lastBuildDate>Sat, 21 Nov 2009 01:13:25 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.techsupportforum.com/cwd/images/misc/rss.jpg</url>
			<title><![CDATA[Tech Support Forum - Web Design & Programming]]></title>
			<link>http://www.techsupportforum.com</link>
		</image>
		<item>
			<title>Images in Wordpress</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/433506-images-wordpress.html</link>
			<pubDate>Fri, 20 Nov 2009 04:51:19 GMT</pubDate>
			<description><![CDATA[Alright, so i am converting my site over to wordpress, aka...lots of images. I have 78 images (all wallpapers) and i am wondering how i would go about making a page in which it shows, say 50 images (in order of newest [top] to oldest [bottom]) with a next page button down below. I know i could...]]></description>
			<content:encoded><![CDATA[<div>Alright, so i am converting my site over to wordpress, aka...lots of images. I have 78 images (all wallpapers) and i am wondering how i would go about making a page in which it shows, say 50 images (in order of newest [top] to oldest [bottom]) with a next page button down below. I know i could probably have loads of fun writing this in the html editor :mblah:<br />
<br />
<br />
But please, please tell me there is an easy way of doing this. Is there a plugin? Please explain how i would go about this.</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>Blast</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/433506-images-wordpress.html</guid>
		</item>
		<item>
			<title>SQL/PHP Query Help - Display only records that do not have a Completed Status</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/433256-sql-php-query-help-display-only-records-do-not-have-completed-status.html</link>
			<pubDate>Thu, 19 Nov 2009 08:56:25 GMT</pubDate>
			<description><![CDATA[Hi all 
 
I have a PHP page that displays records from a database, at the moment it displays all the records on the screen but i only want it to display records that don't have the word *complete* in the status row. I've tried a couple of queries but i can't seem to get it to work. If anyone could...]]></description>
			<content:encoded><![CDATA[<div>Hi all<br />
<br />
I have a PHP page that displays records from a database, at the moment it displays all the records on the screen but i only want it to display records that don't have the word <b>complete</b> in the status row. I've tried a couple of queries but i can't seem to get it to work. If anyone could help it would be greatly appriciated :pray:<br />
<br />
Steve<br />
<br />
I have included my SQL Script <br />
<br />
&lt;?php require_once('Connections/upmsbeta1.php'); ?&gt;<br />
&lt;?php<br />
if (!function_exists(&quot;GetSQLValueString&quot;)) {<br />
function GetSQLValueString($theValue, $theType, $theDefinedValue = &quot;&quot;, $theNotDefinedValue = &quot;&quot;) <br />
{<br />
  $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;<br />
<br />
  $theValue = function_exists(&quot;mysql_real_escape_string&quot;) ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);<br />
<br />
  switch ($theType) {<br />
    case &quot;text&quot;:<br />
      $theValue = ($theValue != &quot;&quot;) ? &quot;'&quot; . $theValue . &quot;'&quot; : &quot;NULL&quot;;<br />
      break;    <br />
    case &quot;long&quot;:<br />
    case &quot;int&quot;:<br />
      $theValue = ($theValue != &quot;&quot;) ? intval($theValue) : &quot;NULL&quot;;<br />
      break;<br />
    case &quot;double&quot;:<br />
      $theValue = ($theValue != &quot;&quot;) ? &quot;'&quot; . doubleval($theValue) . &quot;'&quot; : &quot;NULL&quot;;<br />
      break;<br />
    case &quot;date&quot;:<br />
      $theValue = ($theValue != &quot;&quot;) ? &quot;'&quot; . $theValue . &quot;'&quot; : &quot;NULL&quot;;<br />
      break;<br />
    case &quot;defined&quot;:<br />
      $theValue = ($theValue != &quot;&quot;) ? $theDefinedValue : $theNotDefinedValue;<br />
      break;<br />
  }<br />
  return $theValue;<br />
}<br />
}<br />
<br />
mysql_select_db($database_upmsbeta1, $upmsbeta1);<br />
$query_rs1 = &quot;SELECT * FROM `data`&quot;;<br />
$rs1 = mysql_query($query_rs1, $upmsbeta1) or die(mysql_error());<br />
$row_rs1 = mysql_fetch_assoc($rs1);<br />
$totalRows_rs1 = mysql_num_rows($rs1);<br />
?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />
&lt;title&gt;Untitled Document&lt;/title&gt;<br />
&lt;/head&gt;<br />
<br />
&lt;body&gt;<br />
&lt;table width=&quot;200&quot; border=&quot;1&quot;&gt;<br />
  &lt;tr&gt;<br />
    &lt;td&gt;Form Type &lt;/td&gt;<br />
    &lt;td&gt;First Name&lt;/td&gt;<br />
    &lt;td&gt;Last Name&lt;/td&gt;<br />
    &lt;td&gt;Date Of Birth&lt;/td&gt;<br />
    &lt;td&gt;Status&lt;/td&gt;<br />
    &lt;td&gt;Edit&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
  &lt;?php do { ?&gt;<br />
    &lt;tr&gt;<br />
      &lt;td&gt;&lt;?php echo $row_rs1['formtype']; ?&gt;&lt;/td&gt;<br />
      &lt;td&gt;&lt;?php echo $row_rs1['firstname']; ?&gt;&lt;/td&gt;<br />
      &lt;td&gt;&lt;?php echo $row_rs1['lastname']; ?&gt;&lt;/td&gt;<br />
      &lt;td&gt;&lt;?php echo $row_rs1['dateofbirth']; ?&gt;&lt;/td&gt;<br />
       &lt;td&gt;&lt;?php echo $row_rs1['status']; ?&gt;&lt;/td&gt;<br />
      &lt;td&gt;&lt;a href=&quot;edit.php?id=&lt;?php echo $row_rs1['ID']; ?&gt;=&quot;&gt;Edit&lt;/a&gt;&lt;/td&gt;<br />
    &lt;/tr&gt;<br />
    &lt;?php } while ($row_rs1 = mysql_fetch_assoc($rs1)); ?&gt;<br />
&lt;/table&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
&lt;?php<br />
mysql_free_result($rs1);<br />
?&gt;</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>stephenf33</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/433256-sql-php-query-help-display-only-records-do-not-have-completed-status.html</guid>
		</item>
		<item>
			<title>Need Web Media Player with Paypal</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/433191-need-web-media-player-paypal.html</link>
			<pubDate>Thu, 19 Nov 2009 03:51:42 GMT</pubDate>
			<description><![CDATA[I need a web media player where you can hear a song, buy it with paypal, and download. I've looked all over for a template of some sort but with no luck! Please Help!]]></description>
			<content:encoded><![CDATA[<div>I need a web media player where you can hear a song, buy it with paypal, and download. I've looked all over for a template of some sort but with no luck! Please Help!</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>BennyDigitale</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/433191-need-web-media-player-paypal.html</guid>
		</item>
		<item>
			<title>Forum in Dreamweaver cs4</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/433126-forum-dreamweaver-cs4.html</link>
			<pubDate>Wed, 18 Nov 2009 23:52:05 GMT</pubDate>
			<description><![CDATA[I'm making a website for my friend's clan and i refuse to kneel to those free web site makers. I have a great website made except for a forum... and i have no idea how to make one in dreamweaver cs4 (if it's even possible, i dont know.) :upset:. Please help?]]></description>
			<content:encoded><![CDATA[<div>I'm making a website for my friend's clan and i refuse to kneel to those free web site makers. I have a great website made except for a forum... and i have no idea how to make one in dreamweaver cs4 (if it's even possible, i dont know.) :upset:. Please help?</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>Shiverq</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/433126-forum-dreamweaver-cs4.html</guid>
		</item>
		<item>
			<title>Help me centre this table!</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/433051-help-me-centre-table.html</link>
			<pubDate>Wed, 18 Nov 2009 19:02:59 GMT</pubDate>
			<description><![CDATA[Hi 
 
Please someone help me. 
 
I am trying to center this website: www.remyhunter.co.uk 
 
When I try and centre everything, just the grey background and text at the top and bottom centre. The line and the photos don't stay locked in place. 
 
Please help!]]></description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
Please someone help me.<br />
<br />
I am trying to center this website: <a href="http://www.remyhunter.co.uk" target="_blank">www.remyhunter.co.uk</a><br />
<br />
When I try and centre everything, just the grey background and text at the top and bottom centre. The line and the photos don't stay locked in place.<br />
<br />
Please help!<br />
<br />
The site was created by someone else in Expression Web.<br />
<br />
I'm not an expert on this but I'm sure someone reading this must have the knowledge. Thanks!<br />
<br />
Joe<br />
Edit/Delete Message</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>joeeyeless</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/433051-help-me-centre-table.html</guid>
		</item>
		<item>
			<title>Java in IE</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432959-java-ie.html</link>
			<pubDate>Wed, 18 Nov 2009 11:35:07 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm having real trouble making a java gallery work on a site. The gallery loads fine in FF / chrome etc, but IE (all versions I've tried) won't load the pictures 
 
Here's the link to see 
 
http://www.janewrobel.eclipse.co.uk/peru.html 
 
Could someone take a look at to help, or is a common...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm having real trouble making a java gallery work on a site. The gallery loads fine in FF / chrome etc, but IE (all versions I've tried) won't load the pictures<br />
<br />
Here's the link to see<br />
<br />
<a href="http://www.janewrobel.eclipse.co.uk/peru.html" target="_blank">http://www.janewrobel.eclipse.co.uk/peru.html</a><br />
<br />
Could someone take a look at to help, or is a common easy fix, I've tried searching but no answers yet. Would it help if I posted the exact code from the .js<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>tomwrob</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432959-java-ie.html</guid>
		</item>
		<item>
			<title>Evolution-Xtreme forum error</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432546-evolution-xtreme-forum-error.html</link>
			<pubDate>Tue, 17 Nov 2009 04:07:01 GMT</pubDate>
			<description>I have a problem on my website forums 
 
I click on a topic and I get the following error 
 
*Could not obtain reputation stats for this user 
 
DEBUG MODE 
 
SQL Error : 2006 MySQL server has gone away</description>
			<content:encoded><![CDATA[<div>I have a problem on my website forums<br />
<br />
I click on a topic and I get the following error<br />
<br />
<b>Could not obtain reputation stats for this user<br />
<br />
DEBUG MODE<br />
<br />
SQL Error : 2006 MySQL server has gone away<br />
<br />
SELECT COUNT(user_id) AS count_reps FROM nuke_bbreputation AS r WHERE r.user_id = 16 GROUP BY user_id<br />
<br />
Line : 4043<br />
File : viewtopic.php</b><br />
<br />
<br />
I am using Evolution-Xtreme</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>thirstycamel</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432546-evolution-xtreme-forum-error.html</guid>
		</item>
		<item>
			<title>Internet Radio</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432532-internet-radio.html</link>
			<pubDate>Tue, 17 Nov 2009 02:38:58 GMT</pubDate>
			<description><![CDATA[Hey Guys! 
My Friend got a program called SAM Broadcaster. And since none of the tutorials on google work. I would like to ask; How would I go about getting the radio station to play on a HTML Page. We can get the station to work through the "Open url" feature of WMP using this address...]]></description>
			<content:encoded><![CDATA[<div>Hey Guys!<br />
My Friend got a program called SAM Broadcaster. And since none of the tutorials on google work. I would like to ask; How would I go about getting the radio station to play on a HTML Page. We can get the station to work through the &quot;Open url&quot; feature of WMP using this address &quot;http://78.32.196.159:14567&quot; but I cannot seem to get it to work in any form of embedded player or anything similar. I use DreamWeaver. Any suggestions on how I would achieve this would be greatly appreciated.<br />
<br />
Regards,<br />
Daniel Taylor</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>taydan04</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432532-internet-radio.html</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Quicktime player auto loads in Chrome]]></title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432503-solved-quicktime-player-auto-loads-chrome.html</link>
			<pubDate>Tue, 17 Nov 2009 01:04:52 GMT</pubDate>
			<description><![CDATA[I just posted a new webpage with a very simple embedded audio player. It is set to sit quietly until turned on. It works fine in Firefox and IE, but autoloads with the page in Chrome.  
 
Here is the code: 
 
<embed src="http://sharonlippincott.com/Podcasts/KarenWalker-Following_the_Whispers.mp3" ...]]></description>
			<content:encoded><![CDATA[<div>I just posted a new webpage with a very simple embedded audio player. It is set to sit quietly until turned on. It works fine in Firefox and IE, but autoloads with the page in Chrome. <br />
<br />
Here is the code:<br />
<br />
&lt;embed src=&quot;http://sharonlippincott.com/Podcasts/KarenWalker-Following_the_Whispers.mp3&quot; <br />
width=&quot;140&quot; height=&quot;40&quot; autostart=&quot;false&quot; loop=&quot;FALSE&quot;&gt; <br />
&lt;/embed&gt;<br />
<br />
The page URL is <a href="http://sharonlippincott.com/Home_R2.html" target="_blank">http://sharonlippincott.com/Home_R2.html</a>. <br />
<br />
I'm going to leave it as it is for now, because so few people are using Chrome, and hopefully I'll find a solution.<br />
<br />
Any other ideas on a slightly more sophisticated player that would work around this problem?</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>Grannygeek</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432503-solved-quicktime-player-auto-loads-chrome.html</guid>
		</item>
		<item>
			<title>how to send newsletters via emails</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432395-how-send-newsletters-via-emails.html</link>
			<pubDate>Mon, 16 Nov 2009 19:43:19 GMT</pubDate>
			<description>how it is possible to develop it in a web projects</description>
			<content:encoded><![CDATA[<div>how it is possible to develop it in a web projects</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>ashish_hbk</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432395-how-send-newsletters-via-emails.html</guid>
		</item>
		<item>
			<title>C# (Sharp) help please!</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432329-c-sharp-help-please.html</link>
			<pubDate>Mon, 16 Nov 2009 16:37:14 GMT</pubDate>
			<description><![CDATA[Hi guys, just wandering if theres anyone out there who could lend me a hand with an assignment I'm currently working on.  
 
Ive done like 95% of it but I'm struggling with the loop on my c# program, for a programmer i imagine this is a rookie mistake. So if any one wouldn't mind taking 5 mins out...]]></description>
			<content:encoded><![CDATA[<div>Hi guys, just wandering if theres anyone out there who could lend me a hand with an assignment I'm currently working on. <br />
<br />
Ive done like 95% of it but I'm struggling with the loop on my c# program, for a programmer i imagine this is a rookie mistake. So if any one wouldn't mind taking 5 mins out to look at my program and try help me that would be greatly appreciated. As I'm sure you can imagine i cant post it on here as its a university assignment so if you caould message this board i can PM you what i have so far and see if you could point me in the right direction.<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>Matt_1988</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432329-c-sharp-help-please.html</guid>
		</item>
		<item>
			<title>DreamWeaverMX error - sharing violation</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/432055-dreamweavermx-error-sharing-violation.html</link>
			<pubDate>Sun, 15 Nov 2009 17:49:36 GMT</pubDate>
			<description><![CDATA[This subject has been dealt with in November last year, but without a successful solution. Possible solutions were posted by jamiemac2005: 
 
Hey, i don't know the specific error, but it sounds as if table.htm (the file that dw uses to insert tables) is already in use when you try to use it. Does...]]></description>
			<content:encoded><![CDATA[<div>This subject has been dealt with in November last year, but without a successful solution. Possible solutions were posted by jamiemac2005:<br />
<br />
<font color="Blue">Hey, i don't know the specific error, but it sounds as if table.htm (the file that dw uses to insert tables) is already in use when you try to use it. Does this happen every time you try to insert a table?<br />
<br />
Try locating the table.html file and check it's permissions, also try changing the filename/something simple like that to ensure there are no permissions errors, (make sure you change it back).<br />
<br />
Does it happen when inserting any other object? etc?<br />
<br />
It could be a compatibility issue, i use DW8 on Vista and i get them, you could try running the program in compatibility mode?</font><br />
<br />
I am having the same problem. I think only in Vista Ultimate and Windows 7 Ultimate, never did in Windows XP.<br />
While trying to insert a table in Dreamweaver MX, it works only as long as I do not change any of the default parameter settings. When I change even one, the following error message comes up &amp; shuts down the program:<br />
&quot;A sharing violation occurred while accessing C:\Users\Dirk\AppData\Roaming\Macromedia MX\Configuration\Objects\Common\Table.htm.&quot;<br />
After restarting Dreamweaver, the Insert Table command does not respond at all. When I try to change or delete the file Table.htm it says &quot;Denied, because the file is open in Dreamweaver&quot;. After closing Dreamweaver, I can delete or rename the file and I can use Insert a table, again only without changing the parameters. It also creates a new Table.htm file. In the created table I can change the parameters either in Properties or in the code.<br />
<br />
I  have followed jamiemac2005 suggestions, e.g. to run the program in Compatibility mode, but no change. All other inserts work without problem. I have also sent the original poster a private message but have not heard anything yet.<br />
<br />
Any light on this annoying phenomenon would be greatly appreciated.<br />
Thanks<br />
Dirk</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>dirmar</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/432055-dreamweavermx-error-sharing-violation.html</guid>
		</item>
		<item>
			<title>buying my first domain soon!</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/431767-buying-my-first-domain-soon.html</link>
			<pubDate>Sat, 14 Nov 2009 18:24:58 GMT</pubDate>
			<description>so after running a blogspot for around 3 years now, me and two friends have decided to upgrade to our own website. since the three of us are all spread out across the midwest, a few issues have come up concerning all 3 of us being able to easily update the site and make blog posts. if i create the...</description>
			<content:encoded><![CDATA[<div>so after running a blogspot for around 3 years now, me and two friends have decided to upgrade to our own website. since the three of us are all spread out across the midwest, a few issues have come up concerning all 3 of us being able to easily update the site and make blog posts. if i create the site on dreamweaver my own computer and upload it to our host server, will the other two be able to make changes as they wish, or only me since i have the dreamweaver file on my computer?<br />
<br />
also, for making blog posts on the site, how do we each sign up under our own names? this will be different seeing as how we will be no longer using blogger.com</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>mooseyforyebs</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/431767-buying-my-first-domain-soon.html</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Dev C++ Error in Source Code]]></title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/431626-solved-dev-c-error-source-code.html</link>
			<pubDate>Sat, 14 Nov 2009 05:47:53 GMT</pubDate>
			<description><![CDATA[My Source Code: 
 
/** 
* @author Scott Linske 
* @version 11/13/09 
* Code Description: Demonstrates the Users opinion about Metal Music 
*/ 
 
#include <iostream>           //Allows user interaction with program 
using namespace std;          //Introduces using namespace std;]]></description>
			<content:encoded><![CDATA[<div>My Source Code:<br />
<br />
/**<br />
* @author Scott Linske<br />
* @version 11/13/09<br />
* Code Description: Demonstrates the Users opinion about Metal Music<br />
*/<br />
<br />
#include &lt;iostream&gt;           //Allows user interaction with program<br />
using namespace std;          //Introduces using namespace std;<br />
<br />
void Opinion();               //Prototype for the function Opinion();<br />
//pre:<br />
//post: Demonstrates the Users opinion about Metal Music<br />
void Opinion()                //Definition for the function Opinion()<br />
{<br />
     //Declares variables to store the users opinion about Metal Music<br />
     string Opinion;<br />
     <br />
     //Prompts the user for their opinion about Metal Music<br />
     cout&lt;&lt;&quot;What is your opinion about Metal Music?&quot;&lt;&lt;endl;<br />
     cin&gt;&gt;Opinion;<br />
     <br />
     //Outputs the users opinion about Metal Music<br />
     cout&lt;&lt;Opinion&lt;&lt;endl;<br />
}<br />
int main                //Starting point of execution<br />
{    Opinion();         //Function call to Opinion();, int main() is on hold<br />
<br />
     return 0;         //End of execution<br />
<br />
I am currently running the program Dev C++ to create codes. I am getting an error message that says &quot;invalid function declaration&quot;. Can someone please help me with this source code and tell me exactly what is wrong. Anyone using Dev C++ please help me edit this code so it compiles properly. Thanx!!!!!</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>GrandslammerBD</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/431626-solved-dev-c-error-source-code.html</guid>
		</item>
		<item>
			<title>internationalization with netobjects</title>
			<link>http://www.techsupportforum.com/design-forum/web-design-programming/431522-internationalization-netobjects.html</link>
			<pubDate>Fri, 13 Nov 2009 22:13:37 GMT</pubDate>
			<description><![CDATA[Dear All 
 
i kindly ask you for support regarding the following issue: 
 
i'm developing a web site with NetObjects 11, which needs  to support 4 languages... 
i need to know what is the best way to accomplish this without creating the same page 4 times (one for each language). 
 
Thanks for the...]]></description>
			<content:encoded><![CDATA[<div>Dear All<br />
<br />
i kindly ask you for support regarding the following issue:<br />
<br />
i'm developing a web site with NetObjects 11, which needs  to support 4 languages...<br />
i need to know what is the best way to accomplish this without creating the same page 4 times (one for each language).<br />
<br />
Thanks for the attention!!<br />
<br />
bye<br />
<br />
Nermeen S.</div>

]]></content:encoded>
			<category domain="http://www.techsupportforum.com/design-forum/web-design-programming/"><![CDATA[Web Design & Programming]]></category>
			<dc:creator>NERME</dc:creator>
			<guid isPermaLink="true">http://www.techsupportforum.com/design-forum/web-design-programming/431522-internationalization-netobjects.html</guid>
		</item>
	</channel>
</rss>
