<?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>BioRUST Forums</title>
		<link>http://forums.biorust.com/</link>
		<description><![CDATA[[BioRUST Design Community] :: Discussion Forums]]></description>
		<language>en</language>
		<lastBuildDate>Fri, 20 Nov 2009 20:39:28 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.biorust.com/images/misc/rss.jpg</url>
			<title>BioRUST Forums</title>
			<link>http://forums.biorust.com/</link>
		</image>
		<item>
			<title>php, shoutbox problems</title>
			<link>http://forums.biorust.com/html-php-asp-js/8770-php-shoutbox-problems.html</link>
			<pubDate>Tue, 17 Nov 2009 01:30:27 GMT</pubDate>
			<description><![CDATA[Hi everyone! 
 
I got a few "errors" on my site.. So i was wondering if anyone would care to help me out?  
VanHansenDesign - Home (http://www.vanhansendesign.com) is my site, go there and you'll see the problem. I figured that was the easiest way to illustrate the problem.  
 
and here is the...]]></description>
			<content:encoded><![CDATA[<div>Hi everyone!<br />
<br />
I got a few &quot;errors&quot; on my site.. So i was wondering if anyone would care to help me out? <br />
<a href="http://www.vanhansendesign.com" target="_blank">VanHansenDesign - Home</a> is my site, go there and you'll see the problem. I figured that was the easiest way to illustrate the problem. <br />
<br />
and here is the code...<br />
it's alot of code but please have a look at it! <br />
<br />
nr1. shout.php<br />
<br />
&lt;?php<br />
<br />
// calling session_start() the function which starts our authentication session<br />
session_start();<br />
<br />
// connecting to mysql server<br />
$l = mysql_connect  ( &quot;vanhansendesign.com.mysql&quot; , &quot;vanhansendesign&quot; , &quot;ketpia007&quot; ) or die(&quot;Error connecting:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
mysql_select_db( &quot;vanhansendesign&quot; ) or die(&quot;Error getting db:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
<br />
// defining getShouts() which is our function that gets all of our shouts<br />
function getShouts()<br />
{<br />
<br />
    echo '&lt;div align=&quot;center&quot;&gt;<br />
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br />
          &lt;tr&gt;<br />
            &lt;td&gt;<br />
    ';    <br />
    <br />
    $query = mysql_query(&quot;SELECT * FROM shouts ORDER BY id DESC LIMIT 10&quot;) or die(mysql_error());<br />
    while ($row = mysql_fetch_array($query) )<br />
    {<br />
        <br />
        $name = stripslashes($row['Name']);<br />
        $contact = stripslashes($row['Contact']);<br />
        $shout = stripslashes($row['Shout']);<br />
        <br />
        if(empty($contact))<br />
        {<br />
        <br />
            echo '&lt;p&gt;&lt;span class=&quot;author&quot;&gt;'.$name.'&lt;/span&gt; - &lt;span class=&quot;shout&quot;&gt;'.$shout.'&lt;/span&gt;&lt;/p&gt;';<br />
            <br />
        } else {<br />
        <br />
            echo '&lt;p&gt;&lt;span class=&quot;author&quot;&gt;&lt;a href=&quot;'.$contact.'&quot; target=&quot;_blank&quot;&gt;'.$name.'&lt;/a&gt;&lt;/span&gt; - &lt;span class=&quot;shout&quot;&gt;'.$shout.'&lt;/span&gt;&lt;/p&gt;';<br />
<br />
        } // if empty contact<br />
                <br />
    } // while row mysqlfetcharray query<br />
    <br />
    echo '&lt;br&gt;&lt;br&gt;';<br />
    <br />
    echo '<br />
            &lt;/td&gt;<br />
          &lt;/tr&gt;<br />
          &lt;tr&gt;<br />
            &lt;td height=&quot;10&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
            &lt;form name=&quot;shout&quot; method=&quot;post&quot; action=&quot;shout.php&quot;&gt;<br />
              &lt;div align=&quot;center&quot;&gt;<br />
                &lt;input name=&quot;name&quot; type=&quot;text&quot; id=&quot;name&quot; value=&quot;Name&quot; size=&quot;25&quot; maxlength=&quot;10&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;contact&quot; type=&quot;text&quot; id=&quot;contact&quot; value=&quot;http://&quot; size=&quot;25&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;message&quot; type=&quot;text&quot; id=&quot;message&quot; value=&quot;Message&quot; size=&quot;25&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;shout&quot; type=&quot;submit&quot; id=&quot;shout&quot; value=&quot;Shout!&quot;&gt;<br />
              &lt;/div&gt;<br />
            &lt;/form&gt;<br />
            &lt;/td&gt;<br />
          &lt;/tr&gt;<br />
          &lt;/table&gt;<br />
          &lt;/div&gt;<br />
        ';    <br />
<br />
} // function getshouts<br />
<br />
<br />
// our processing if control statement<br />
if ( isset ( $_POST['shout'] ) )<br />
{<br />
    <br />
    $name = addslashes($_POST['name']);<br />
    $contact = addslashes($_POST['contact']);<br />
    $message =  $_POST['message'];<br />
    <br />
    if ( ( isset($name) ) &amp;&amp; ( isset($message) ) )<br />
    {<br />
        <br />
        // getting smilie list<br />
        $smilies = mysql_query(&quot;SELECT * FROM smilies&quot;) or die(mysql_error());<br />
        while($get = mysql_fetch_array ($smilies))<br />
        {<br />
            <br />
            $alt = $get['Alt'];<br />
            $smilie = $get['URL'];<br />
            <br />
            $message = str_replace( $get['Symbol'] , '&lt;img src=&quot;smilies/'.$smilie.'&quot; border=&quot;0&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;'.$alt.'&quot;&gt;' , $message);<br />
            $themessage = addslashes($message);<br />
            <br />
            // replacing all smilies<br />
                    <br />
        }<br />
    <br />
        mysql_query(&quot;INSERT INTO shouts (Name, Contact, Shout) VALUES ( '$name' , '$contact' , '$message' )&quot;) or die(mysql_error());<br />
        $_SESSION['has_posted'] = 'yes';<br />
        header(&quot;Location: shout.php&quot;);<br />
        <br />
        // if required fields aren't empty, process into database<br />
        <br />
    } else {<br />
    <br />
        echo '&lt;script&gt;alert(&quot;Some fields were not filled out!&quot;);&lt;/script&gt;';<br />
        header(&quot;Location: shout.php&quot;);<br />
        <br />
        // if required fields were left empty, show an error dialog<br />
        <br />
    }<br />
<br />
}/* else {<br />
<br />
    echo '&lt;script&gt;alert(&quot;Please follow the form to this page.&quot;);&lt;/script&gt;';<br />
    header(&quot;Location: shout.php&quot;);<br />
    <br />
    // if they weren't even referred from the form, show error dialog and redirect<br />
<br />
} // if isset post shout<br />
<br />
/* STARTING THE MAIN SCRIPT NOW */<br />
<br />
// starting the table<br />
<br />
//displaying the shouts<br />
getShouts();<br />
<br />
<br />
mysql_close($l);<br />
<br />
<br />
?&gt;<br />
<br />
<br />
<br />
-----------------------<br />
nr 2. admin.html<br />
<br />
&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;&lt;!-- InstanceBegin template=&quot;/Templates/Temp1.dwt&quot; codeOutsideHTMLIsLocked=&quot;false&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;!-- InstanceBeginEditable name=&quot;doctitle&quot; --&gt;<br />
&lt;title&gt;Van Hansen Design&lt;/title&gt;<br />
<br />
&lt;?php<br />
<br />
// calling session_start() the function which starts our authentication session<br />
session_start();<br />
<br />
// connecting to mysql server<br />
$l = mysql_connect  ( &quot;vanhansendesign.com.mysql&quot; , &quot;vanhansendesign&quot; , &quot;ketpia007&quot; ) or die(&quot;Error connecting:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
mysql_select_db( &quot;vanhansendesign&quot; ) or die(&quot;Error getting db:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
<br />
// setting user login credentials<br />
$username = &quot;adminuser&quot;;<br />
$password = &quot;password&quot;;<br />
<br />
// log the user in<br />
if ( isset ( $_POST['login'] ) )<br />
{<br />
<br />
    if (( $_POST['username'] === $username ) &amp;&amp; ( $_POST['password'] === $password ))<br />
    {<br />
    <br />
        $_SESSION['admin_logged_in'] = 'true';<br />
        <br />
    }<br />
    <br />
}<br />
<br />
// selecting the action to perform<br />
function selectAction ( $mode ) <br />
{<br />
<br />
    switch ($mode) <br />
    {<br />
    <br />
        case '':<br />
            echo 'Welcome to the administration panel, make the selection above.';<br />
            break;<br />
            <br />
        case 'add':<br />
            echo '<br />
                &lt;form action=&quot;admin.php?mode=posting&quot; method=&quot;post&quot; name=&quot;addSmilie&quot; enctype=&quot;multipart/form-data&quot;&gt;<br />
                &lt;input name=&quot;symbol&quot; type=&quot;text&quot; value=&quot;=)&quot; size=&quot;25&quot; maxlength=&quot;4&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;image&quot; type=&quot;file&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;addsmilie&quot; type=&quot;submit&quot; value=&quot;Add Smilie!&quot;&gt;&lt;br&gt;&lt;br&gt;<br />
                Check your symbol and filename, I couldnt be bothered writing an &quot;edit smilie&quot; function. Please note, as this is not a gdlib tutorial, there are no file dimensions protections. Please only upload 15x15 pixel smilies, if they are not this size, they will be skewed when they are resized when displayed.<br />
                &lt;/form&gt;<br />
            ';<br />
            break;<br />
            <br />
        case 'delete':<br />
            $query = mysql_query(&quot;SELECT * FROM smilies&quot;) or die(mysql_error());<br />
            while($row = mysql_fetch_array($query)){<br />
            <br />
                echo '&lt;a href=&quot;admin.php?mode=posting&amp;smilie='.$row['id'].'&quot;&gt;<br />
                      &lt;img src=&quot;smilies/'.$row['URL'].'&quot; border=&quot;0&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;'.$row['Alt'].'&quot;&gt;<br />
                      &lt;/a&gt;&lt;br&gt;&lt;br&gt;<br />
                      ';<br />
                      <br />
            }<br />
            break;            <br />
            <br />
        case 'clear':<br />
            mysql_query(&quot;TRUNCATE TABLE shouts&quot;) or die(mysql_error());<br />
            echo 'Shoutbox cleared successfully!';<br />
            break;<br />
            <br />
        case 'logout':<br />
            $_SESSION['admin_logged_in'] = '';<br />
            <br />
            header(&quot;Location: admin.php&quot;);<br />
            break;<br />
            <br />
        case 'posting':<br />
            if(isset($_POST['addsmilie'])){<br />
            <br />
                $uploaddir = 'smilies/';<br />
                <br />
                $uploadfile = $uploaddir . $_FILES['image']['name'];<br />
                <br />
                //echo '&lt;br&gt;&lt;br&gt;'.$uploaddir.'&lt;br&gt;'.$uploadfile.'&lt;br&gt;&lt;br&gt;  ';<br />
                <br />
                $upload = move_uploaded_file($_FILES['image']['tmp_name'], $uploadfile);<br />
                echo '&lt;pre&gt;';<br />
                if( $upload == TRUE ) { <br />
                <br />
                    echo 'Success';<br />
                <br />
                } else {<br />
                <br />
                    echo 'Error';<br />
                    print_r($_FILES);<br />
                    exit;<br />
                    <br />
                }<br />
                print &quot;&lt;/pre&gt;&quot;;<br />
                <br />
                $alt = $_FILES['image']['name'];<br />
                $symbol = $_POST['symbol'];<br />
                $url = $_FILES['image']['name'];<br />
                <br />
                mysql_query(&quot;INSERT INTO smilies(Symbol, URL, Alt) VALUES('$symbol','$url','$alt')&quot;) or die(mysql_error());<br />
                echo '&lt;br&gt;&lt;br&gt;Successfully inserted smilie!&lt;br&gt;&lt;br&gt;&lt;a href=&quot;admin.php&quot;&gt;Admin&lt;/a&gt; | &lt;a href=&quot;shout.php&quot;&gt;Shouts&lt;/a&gt;';<br />
                exit;<br />
                <br />
            }<br />
            <br />
            if(isset($_GET['smilie'])){<br />
                <br />
                $smilie = $_GET['smilie'];<br />
                mysql_query(&quot;DELETE FROM smilies WHERE id = '$smilie' LIMIT 1&quot;) or die(mysql_error());<br />
                echo 'Successfully deleted smilie!&lt;br&gt;&lt;br&gt;&lt;a href=&quot;admin.php&quot;&gt;Admin&lt;/a&gt; | &lt;a href=&quot;shout.php&quot;&gt;Shouts&lt;/a&gt;';<br />
            <br />
            }<br />
            break;<br />
            <br />
        default:<br />
        <br />
        <br />
            <br />
    } // end switch<br />
<br />
} // end if<br />
<br />
// checking login status<br />
if ( $_SESSION['admin_logged_in'] === 'true' )<br />
{<br />
<br />
?&gt;<br />
<br />
<br />
&lt;!-- InstanceEndEditable --&gt;<br />
<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css_1.css&quot; /&gt;<br />
<br />
&lt;!-- InstanceBeginEditable name=&quot;head&quot; --&gt;<br />
&lt;!-- InstanceEndEditable --&gt;<br />
&lt;/head&gt;<br />
<br />
<br />
&lt;body class=&quot;oneColFixCtrHdr&quot;&gt;<br />
<br />
<br />
<br />
&lt;div id=&quot;container&quot;&gt;<br />
  &lt;div id=&quot;header&quot;&gt;&lt;img src=&quot;Images/Banner_V1.png&quot; width=&quot;600&quot; height=&quot;150&quot; alt=&quot;Banner&quot; /&gt;&lt;br/&gt;<br />
<br />
<br />
&lt;p id=&quot;firefox&quot;&gt;Please use &lt;a href=&quot;www.mozilla.com&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;Mozilla Firefox&lt;/strong&gt;&lt;/a&gt; to view this site!&lt;/p&gt;<br />
<br />
<br />
&lt;ul id=&quot;menu1&quot; &gt;<br />
&lt;li&gt;&lt;a href=&quot;index.html&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;img src=&quot;Images/dott_1.png&quot; /&gt;<br />
&lt;li&gt;&lt;a href=&quot;Gallery.html&quot;&gt;Gallery&lt;/a&gt;&lt;/li&gt;<br />
&lt;img src=&quot;Images/dott_1.png&quot; /&gt;<br />
&lt;li&gt;&lt;a href=&quot;about_me.html&quot;&gt;About me&lt;/a&gt;&lt;/li&gt;<br />
&lt;img src=&quot;Images/dott_1.png&quot; /&gt;<br />
&lt;li&gt;&lt;a href=&quot;Russ.html&quot;&gt;Russ&lt;/a&gt;&lt;/li&gt;<br />
&lt;img src=&quot;Images/dott_1.png&quot; /&gt;<br />
&lt;li&gt;&lt;a href=&quot;Music.html&quot;&gt;Music&lt;/a&gt;&lt;/li&gt;<br />
&lt;img src=&quot;Images/dott_1.png&quot; /&gt;<br />
&lt;li&gt;&lt;a href=&quot;Contact.html&quot;&gt;Contact Me&lt;/a&gt;&lt;/li&gt;<br />
  &lt;/ul&gt;<br />
<br />
&lt;img id=&quot;skille1&quot; src=&quot;Images/skille.png&quot; /&gt;<br />
   &lt;br/&gt;<br />
    <br />
  &lt;/div&gt;<br />
    &lt;!-- end #header --&gt;<br />
<br />
<br />
  <br />
  <br />
  &lt;div id=&quot;mainContent&quot;&gt;&lt;!-- InstanceBeginEditable name=&quot;Hovedinnhold&quot; --&gt;<br />
  <br />
  <br />
  <br />
 <br />
  <br />
  <br />
  &lt;!-- end #mainContent --&gt;<br />
  &lt;!-- InstanceEndEditable --&gt;&lt;/div&gt;<br />
  <br />
&lt;div id=&quot;rightcontainer&quot;&gt;<br />
<br />
&lt;?php<br />
<br />
// calling session_start() the function which starts our authentication session<br />
session_start();<br />
<br />
// connecting to mysql server<br />
$l = mysql_connect  ( &quot;vanhansendesign.com.mysql&quot; , &quot;vanhansendesign&quot; , &quot;ketpia007&quot; ) or die(&quot;Error connecting:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
mysql_select_db( &quot;vanhansendesign&quot; ) or die(&quot;Error getting db:&lt;BR&gt;&lt;BR&gt;&quot;.mysql_error());<br />
<br />
// defining getShouts() which is our function that gets all of our shouts<br />
function getShouts()<br />
{<br />
<br />
    echo '&lt;div align=&quot;center&quot;&gt;<br />
        &lt;table width=&quot;150&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br />
          &lt;tr&gt;<br />
            &lt;td&gt;<br />
    ';    <br />
    <br />
    $query = mysql_query(&quot;SELECT * FROM shouts ORDER BY id DESC LIMIT 10&quot;) or die(mysql_error());<br />
    while ($row = mysql_fetch_array($query) )<br />
    {<br />
        <br />
        $name = stripslashes($row['Name']);<br />
        $contact = stripslashes($row['Contact']);<br />
        $shout = stripslashes($row['Shout']);<br />
        <br />
        if(empty($contact))<br />
        {<br />
        <br />
            echo '&lt;p&gt;&lt;span class=&quot;author&quot;&gt;'.$name.'&lt;/span&gt; - &lt;span class=&quot;shout&quot;&gt;'.$shout.'&lt;/span&gt;&lt;/p&gt;';<br />
            <br />
        } else {<br />
        <br />
            echo '&lt;p&gt;&lt;span class=&quot;author&quot;&gt;&lt;a href=&quot;'.$contact.'&quot; target=&quot;_blank&quot;&gt;'.$name.'&lt;/a&gt;&lt;/span&gt; - &lt;span class=&quot;shout&quot;&gt;'.$shout.'&lt;/span&gt;&lt;/p&gt;';<br />
<br />
        } // if empty contact<br />
                <br />
    } // while row mysqlfetcharray query<br />
    <br />
    echo '&lt;br&gt;&lt;br&gt;';<br />
    <br />
    echo '<br />
            &lt;/td&gt;<br />
          &lt;/tr&gt;<br />
          &lt;tr&gt;<br />
            &lt;td height=&quot;10&quot;&gt;&amp;nbsp;&lt;/td&gt;<br />
            &lt;form name=&quot;shout&quot; method=&quot;post&quot; action=&quot;shout.php&quot;&gt;<br />
              &lt;div align=&quot;center&quot;&gt;<br />
                &lt;input name=&quot;name&quot; type=&quot;text&quot; id=&quot;name&quot; value=&quot;Name&quot; size=&quot;25&quot; maxlength=&quot;10&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;contact&quot; type=&quot;text&quot; id=&quot;contact&quot; value=&quot;http://&quot; size=&quot;25&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;message&quot; type=&quot;text&quot; id=&quot;message&quot; value=&quot;Message&quot; size=&quot;25&quot;&gt;&lt;br&gt;<br />
                &lt;input name=&quot;shout&quot; type=&quot;submit&quot; id=&quot;shout&quot; value=&quot;Shout!&quot;&gt;<br />
              &lt;/div&gt;<br />
            &lt;/form&gt;<br />
            &lt;/td&gt;<br />
          &lt;/tr&gt;<br />
          &lt;/table&gt;<br />
          &lt;/div&gt;<br />
        ';    <br />
<br />
} // function getshouts<br />
<br />
<br />
// our processing if control statement<br />
if ( isset ( $_POST['shout'] ) )<br />
{<br />
    <br />
    $name = addslashes($_POST['name']);<br />
    $contact = addslashes($_POST['contact']);<br />
    $message =  $_POST['message'];<br />
    <br />
    if ( ( isset($name) ) &amp;&amp; ( isset($message) ) )<br />
    {<br />
        <br />
        // getting smilie list<br />
        $smilies = mysql_query(&quot;SELECT * FROM smilies&quot;) or die(mysql_error());<br />
        while($get = mysql_fetch_array ($smilies))<br />
        {<br />
            <br />
            $alt = $get['Alt'];<br />
            $smilie = $get['URL'];<br />
            <br />
            $message = str_replace( $get['Symbol'] , '&lt;img src=&quot;smilies/'.$smilie.'&quot; border=&quot;0&quot; width=&quot;15&quot; height=&quot;15&quot; alt=&quot;'.$alt.'&quot;&gt;' , $message);<br />
            $themessage = addslashes($message);<br />
            <br />
            // replacing all smilies<br />
                    <br />
        }<br />
    <br />
        mysql_query(&quot;INSERT INTO shouts (Name, Contact, Shout) VALUES ( '$name' , '$contact' , '$message' )&quot;) or die(mysql_error());<br />
        $_SESSION['has_posted'] = 'yes';<br />
        header(&quot;Location: shout.php&quot;);<br />
        <br />
        // if required fields aren't empty, process into database<br />
        <br />
    } else {<br />
    <br />
        echo '&lt;script&gt;alert(&quot;Some fields were not filled out!&quot;);&lt;/script&gt;';<br />
        header(&quot;Location: shout.php&quot;);<br />
        <br />
        // if required fields were left empty, show an error dialog<br />
        <br />
    }<br />
<br />
}/* else {<br />
<br />
    echo '&lt;script&gt;alert(&quot;Please follow the form to this page.&quot;);&lt;/script&gt;';<br />
    header(&quot;Location: shout.php&quot;);<br />
    <br />
    // if they weren't even referred from the form, show error dialog and redirect<br />
<br />
} // if isset post shout<br />
<br />
/* STARTING THE MAIN SCRIPT NOW */<br />
<br />
// starting the table<br />
<br />
//displaying the shouts<br />
getShouts();<br />
<br />
<br />
mysql_close($l);<br />
<br />
<br />
?&gt;<br />
<br />
&lt;/div&gt;  <br />
  <br />
  <br />
  &lt;div id=&quot;footer&quot;&gt;<br />
  <br />
&lt;br/&gt;<br />
<br />
&lt;img src=&quot;Images/skille.png&quot; /&gt;<br />
&lt;br /&gt;<br />
<br />
Contact me; <br />
&lt;!-- #BeginLibraryItem &quot;/Library/Email.lbi&quot; --&gt;E-mail: <a href="mailto:stian@vanhansendesign.com">stian@vanhansendesign.com</a>&lt;!-- #EndLibraryItem --&gt; <br />
or <br />
&lt;!-- #BeginLibraryItem &quot;/Library/TLF.lbi&quot; --&gt;TLF: 46785254&lt;!-- #EndLibraryItem --&gt;<br />
&lt;br/&gt;<br />
&lt;br/&gt; <br />
<br />
&lt;!-- end #footer --&gt;&lt;/div&gt;<br />
&lt;!-- end #container --&gt;&lt;/div&gt;<br />
<br />
<br />
&lt;/body&gt;<br />
&lt;!-- InstanceEnd --&gt;<br />
<br />
 &lt;p&gt;Smilie administration: &lt;a href=&quot;file:///Macintosh HD/Users/stianhansen/Downloads/php-shoutbox.zip Folder/admin.php?mode=add&quot;&gt;add smilie&lt;/a&gt; | &lt;a href=&quot;file:///Macintosh HD/Users/stianhansen/Downloads/php-shoutbox.zip Folder/admin.php?mode=delete&quot;&gt;delete smilie&lt;/a&gt;&lt;/p&gt;<br />
 &lt;p&gt;Shoutbox administration: &lt;a href=&quot;file:///Macintosh HD/Users/stianhansen/Downloads/php-shoutbox.zip Folder/admin.php?mode=clear&quot;&gt;clear shoutbox&lt;/a&gt; | &lt;a href=&quot;file:///Macintosh HD/Users/stianhansen/Downloads/php-shoutbox.zip Folder/admin.php?mode=logout&quot;&gt;logout&lt;/a&gt;&lt;/p&gt;<br />
 &lt;table width=&quot;600&quot; border=&quot;1&quot; cellpadding=&quot;5&quot; bordercolor=&quot;#CCCCCC&quot;&gt;<br />
   &lt;tr&gt;<br />
     &lt;td&gt;&lt;?php selectAction($_GET['mode']); ?&gt;&lt;/td&gt;<br />
   &lt;/tr&gt;<br />
 &lt;/table&gt;<br />
 <br />
 &lt;?php<br />
<br />
// showing login form<br />
} else {<br />
<br />
    echo '<br />
        &lt;form action=&quot;admin.php&quot; method=&quot;post&quot; name=&quot;login&quot;&gt;<br />
        &lt;input name=&quot;username&quot; type=&quot;text&quot; value=&quot;username&quot; size=&quot;25&quot; maxlength=&quot;32&quot;&gt;&lt;br&gt;<br />
        &lt;input name=&quot;password&quot; type=&quot;password&quot; value=&quot;password&quot; size=&quot;25&quot; maxlength=&quot;32&quot;&gt;&lt;br&gt;<br />
        &lt;input name=&quot;login&quot; type=&quot;submit&quot; value=&quot;login&quot;&gt;<br />
        &lt;/form&gt;<br />
    ';<br />
    <br />
}<br />
<br />
mysql_close($l);<br />
<br />
?&gt;<br />
<br />
&lt;/html&gt;</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/html-php-asp-js/">HTML / PHP / ASP / JS</category>
			<dc:creator>vanhansen</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/html-php-asp-js/8770-php-shoutbox-problems.html</guid>
		</item>
		<item>
			<title>MarkupGeeks Logo</title>
			<link>http://forums.biorust.com/showrooms-works-progress/8769-markupgeeks-logo.html</link>
			<pubDate>Mon, 16 Nov 2009 20:45:11 GMT</pubDate>
			<description><![CDATA[Hello BioRUST, 
 
I've attached my first attempt at a logo for Markup Geeks, a project me and a friend are considering. 
 
Please provide as much feedback and suggestions as possible, I'm trying to get this baby to perfection! 
 
Alex]]></description>
			<content:encoded><![CDATA[<div>Hello BioRUST,<br />
<br />
I've attached my first attempt at a logo for Markup Geeks, a project me and a friend are considering.<br />
<br />
Please provide as much feedback and suggestions as possible, I'm trying to get this baby to perfection!<br />
<br />
Alex</div>


	<br />
	<div style="padding:6px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:3px">
			
<a href="http://forums.biorust.com/attachments/showrooms-works-progress/1990d1258404306-markupgeeks-logo-mg_logo.jpg" rel="Lightbox_57906" id="attachment1990" target="_blank"><img class="thumbnail" src="http://forums.biorust.com/attachments/showrooms-works-progress/1990d1258404306t-markupgeeks-logo-mg_logo.jpg" border="0" alt="Click image for larger version

Name:	mg_logo.jpg
Views:	N/A
Size:	104.9 KB
ID:	1990" /></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.biorust.com/showrooms-works-progress/"><![CDATA[Showrooms & Works In Progress]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/showrooms-works-progress/8769-markupgeeks-logo.html</guid>
		</item>
		<item>
			<title>Drawing Tutorials</title>
			<link>http://forums.biorust.com/illustration-sketching-vector-art/8768-drawing-tutorials.html</link>
			<pubDate>Mon, 16 Nov 2009 00:46:08 GMT</pubDate>
			<description><![CDATA[Hello BioRUST, 
 
Here is a collection of drawing tutorials and resources I've compiled.  Enjoy! 
 
1. How to draw a car (http://www.dueysdrawings.com/how_to_draw_a_car.html) 
2. Tips for drawing hands (http://www.ratemydrawings.com/tutorials/drawing/138-Tips_for_drawing_hands.html) 
3. How to draw...]]></description>
			<content:encoded><![CDATA[<div>Hello BioRUST,<br />
<br />
Here is a collection of drawing tutorials and resources I've compiled.  Enjoy!<br />
<br />
1. <a href="http://www.dueysdrawings.com/how_to_draw_a_car.html" target="_blank">How to draw a car</a><br />
2. <a href="http://www.ratemydrawings.com/tutorials/drawing/138-Tips_for_drawing_hands.html" target="_blank">Tips for drawing hands</a><br />
3. <a href="http://www.dragoart.com/tuts/874/1/1/how-to-draw-a-ninja.htm" target="_blank">How to draw a ninja</a><br />
4. <a href="http://www.designertechniques.com/tutorials/mikaellugnegardtraditionalrendering01-page1.htm" target="_blank">Traditional sketch rendering</a><br />
5. <a href="http://www.onlypencil.com/blog/tutorials/drawing-the-human-eye/" target="_blank">Drawing the human eye</a><br />
6. <a href="http://www.stars-portraits.com/en/tutorial/draw-eye-tutorial.php" target="_blank">Eye drawing tutorial</a><br />
7. <a href="http://www.gomediazine.com/tutorials/comic_book_style/" target="_blank">Comic book style graphic design</a><br />
8. <a href="http://www.foxprints.com/tracy/misc/tutorial/char_drawing.html" target="_blank">Character drawing</a><br />
9. <a href="http://www.drawspace.com/lessons/lesson.php?id=h13" target="_blank">Sketching figures with lines</a><br />
10. <a href="http://graphics-illustrations.com/2007/07/15/figure-drawing-video-tutorial/" target="_blank">Figure drawing video tutorial</a><br />
11. <a href="http://media.academyart.edu/freeclass/index.html" target="_blank">How to draw a head</a><br />
12. <a href="http://neondragonart.com/dp/tutorials/dragon.htm" target="_blank">The dragon tutorial</a><br />
13. <a href="http://neondragonart.com/dp/tutorials/wing.htm" target="_blank">Drawing wings</a><br />
14. <a href="http://neondragonart.com/dp/tutorials/body.htm" target="_blank">The human body</a><br />
15. <a href="http://www.elfwood.com/farp/sketching/sketching.html" target="_blank">Pencil sketching</a><br />
16. <a href="http://www.elfwood.com/farp/theart/maeryhair/maeryhair.html" target="_blank">Drawing hair in pencil</a><br />
17. <a href="http://zue.deviantart.com/art/Tutorial-Drawing-Hands-37882731" target="_blank">Drawing hands</a><br />
18. <a href="http://cataclysm-x.deviantart.com/art/Tutorial-Detailed-Hair-part-1-72642274" target="_blank">Drawing detailed hair</a><br />
19. <a href="http://cataclysm-x.deviantart.com/art/Tutorial-Proportions-112009276" target="_blank">Proportions</a><br />
20. <a href="http://sugarsugarhyperlolly.deviantart.com/art/Super-Sugar-Clothing-Tutorial-54742341" target="_blank">Clothing</a><br />
21. <a href="http://www.howtodrawmanga.com/howtodraw/tutorials_howtodraw_ears_koda.html" target="_blank">Drawing ears</a><br />
22. <a href="http://www.portrait-artist.org/basics/techniques.html" target="_blank">Pencil shading</a><br />
23. <a href="http://www.dueysdrawings.com/portrait_tutorial.html" target="_blank">Drawing portraits</a><br />
24. <a href="http://cataclysm-x.deviantart.com/art/Tutorials-How-to-draw-lips-103303840" target="_blank">Drawing lips</a><br />
25. <a href="http://www.dragoart.com/tuts/559/1/1/how-to-draw-optimus-prime-from-transformers.htm" target="_blank">How to Draw Optimus Prime From Transformers</a><br />
26. <a href="http://www.stars-portraits.com/en/tutorial/rose-tutorial.php" target="_blank">Drawing a Rose</a><br />
27. <a href="http://www.dragoart.com/tuts/2076/1/1/how-to-draw-marlon-brando.htm" target="_blank">How to draw Marlon Brando step by step</a><br />
28. <a href="http://www.onlypencil.com/blog/tutorials/aceo-speed-lone-wolf-pencil-drawing/" target="_blank">Lone Wolf Pencil Drawing</a><br />
29. <a href="http://emptyeasel.com/2006/12/08/how-to-draw-what-you-see-techniques-and-tips-to-improve-your-drawing-skills/" target="_blank">How to Draw what you See: Techniques and Tips to Improve your Drawing Skills</a><br />
30. <a href="http://emptyeasel.com/2006/11/24/9-steps-to-creating-better-compositions/" target="_blank">9 Steps to Creating Better Compositions</a><br />
<br />
Please report any broken links and feel free to suggest additions.<br />
<br />
:D<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/illustration-sketching-vector-art/"><![CDATA[Illustration, Sketching & Vector Art]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/illustration-sketching-vector-art/8768-drawing-tutorials.html</guid>
		</item>
		<item>
			<title>Superbowl predictions, anyone?</title>
			<link>http://forums.biorust.com/general-discussions/8767-superbowl-predictions-anyone.html</link>
			<pubDate>Sun, 15 Nov 2009 22:46:48 GMT</pubDate>
			<description><![CDATA[Not sure if anyone else is a football fan (Miami Dolphins fan here)... 
 
I'm expecting to see the New Orleans Saints and Dallas Cowboys in the superbowl based off of what I've seen thus far. 
 
Anyone else have some predictions? 
 
Alex]]></description>
			<content:encoded><![CDATA[<div>Not sure if anyone else is a football fan (Miami Dolphins fan here)...<br />
<br />
I'm expecting to see the New Orleans Saints and Dallas Cowboys in the superbowl based off of what I've seen thus far.<br />
<br />
Anyone else have some predictions?<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/general-discussions/">General Discussions</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/general-discussions/8767-superbowl-predictions-anyone.html</guid>
		</item>
		<item>
			<title>Photomanipulation Footsteps</title>
			<link>http://forums.biorust.com/showrooms-works-progress/8766-photomanipulation-footsteps.html</link>
			<pubDate>Sun, 15 Nov 2009 22:43:20 GMT</pubDate>
			<description><![CDATA[Hello everyone, 
 
I've attached one of my first attempts at photo manipulation.  Please give me feedback! 
 
Source stock 1: Broken TV (http://shudder-stock.deviantart.com/art/S-S-Broken-TV-35368923) 
Source stock 2: Graffiti (http://chris-187.deviantart.com/art/Chris-Graffiti-27353528) 
 
If you...]]></description>
			<content:encoded><![CDATA[<div>Hello everyone,<br />
<br />
I've attached one of my first attempts at photo manipulation.  Please give me feedback!<br />
<br />
Source stock 1: <a href="http://shudder-stock.deviantart.com/art/S-S-Broken-TV-35368923" target="_blank">Broken TV</a><br />
Source stock 2: <a href="http://chris-187.deviantart.com/art/Chris-Graffiti-27353528" target="_blank">Graffiti</a><br />
<br />
If you know of any good photo manipulation tutorials, please include links.  :)<br />
<br />
Thanks!<br />
<br />
Alex</div>


	<br />
	<div style="padding:6px">

	
		<fieldset class="fieldset">
			<legend>Attached Thumbnails</legend>
			<div style="padding:3px">
			
<a href="http://forums.biorust.com/attachments/showrooms-works-progress/1988d1258325041-photomanipulation-footsteps-brokentv_graffiti_room.jpg" rel="Lightbox_57888" id="attachment1988" target="_blank"><img class="thumbnail" src="http://forums.biorust.com/attachments/showrooms-works-progress/1988d1258325041t-photomanipulation-footsteps-brokentv_graffiti_room.jpg" border="0" alt="Click image for larger version

Name:	brokentv_graffiti_room.jpg
Views:	N/A
Size:	332.7 KB
ID:	1988" /></a>
&nbsp;

			</div>
		</fieldset>
	

	

	

	

	</div>
]]></content:encoded>
			<category domain="http://forums.biorust.com/showrooms-works-progress/"><![CDATA[Showrooms & Works In Progress]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/showrooms-works-progress/8766-photomanipulation-footsteps.html</guid>
		</item>
		<item>
			<title>Learning to draw...</title>
			<link>http://forums.biorust.com/illustration-sketching-vector-art/8765-learning-draw.html</link>
			<pubDate>Sun, 15 Nov 2009 12:43:20 GMT</pubDate>
			<description><![CDATA[Hello BioRUSTers, 
 
I'm interested in learning to draw. 
 
I was hoping you guys could provide me with any resources you have that can teach the fundamentals of drawing.  I have little experience, so I need to start with the basics. 
 
Thanks in advance! 
 
Alex]]></description>
			<content:encoded><![CDATA[<div>Hello BioRUSTers,<br />
<br />
I'm interested in learning to draw.<br />
<br />
I was hoping you guys could provide me with any resources you have that can teach the fundamentals of drawing.  I have little experience, so I need to start with the basics.<br />
<br />
Thanks in advance!<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/illustration-sketching-vector-art/"><![CDATA[Illustration, Sketching & Vector Art]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/illustration-sketching-vector-art/8765-learning-draw.html</guid>
		</item>
		<item>
			<title>Looking for simple UI elements</title>
			<link>http://forums.biorust.com/marketplace/8764-looking-simple-ui-elements.html</link>
			<pubDate>Sun, 15 Nov 2009 06:40:45 GMT</pubDate>
			<description><![CDATA[Hello Biorust community, 
 
On this page it says "Welcome, FenixRoA  You last visited: 06-29-2006 at 11:21 AM" 
 
I'm not really on here alot so please don't flame me if I'm breaking some rules or if this is an overdone request. 
 
Anyways, I'm making a simple program. The program will have a kind...]]></description>
			<content:encoded><![CDATA[<div>Hello Biorust community,<br />
<br />
On this page it says &quot;Welcome, FenixRoA  You last visited: 06-29-2006 at 11:21 AM&quot;<br />
<br />
I'm not really on here alot so please don't flame me if I'm breaking some rules or if this is an overdone request.<br />
<br />
Anyways, I'm making a simple program. The program will have a kind of slideshow dynamic to it. I really want this program to look nice, clean, and professional though as I'd like to give it to someone special as a gift.<br />
<br />
I'm looking for some really simple icons. Nothing ridiculous, but I have never really had a &quot;designer's&quot; eye so any help will be appreciated. I don't really want to publicly post my idea and have one of you guys beat me to the punch though. If anyone takes personal interest in helping me out, I'll be happy to share more details.<br />
<br />
The icons I need will have the following functions: Exit, Stop operation, Start operation, Save to disk, Next, and Previous. I imagine the icons to be something like the following:<br />
Exit = 'X'<br />
Save to disk = a floppy disk icon<br />
Stop operation = I'm thinking a stop sign shaped icon (without actually having the word stop) however I am open to other suggestions. Maybe just another 'X'<br />
Start operation = Maybe just an arrow to the right? Kind of like some browsers 'Go' buttons by the URL bar<br />
Next, and previous (typical tail-less arrows).<br />
<br />
I'd like a dark theme with grayish GUI elements. All the elements should match the theme, and should be responsive (anywhere from having simple idle/rollover (click?) images to having full-blown animations).<br />
<br />
None of this will be used for any kind of commercial application and will in no way be available for public distribution (unless the guy who ends up doing all the art wants it to be).<br />
<br />
Am I asking too much for a volunteer job? How much would this kind of thing cost me (either having someone to consult on the design of the GUI and create the graphical elements, or just create the graphical elements I specify)?<br />
<br />
<br />
<br />
<br />
Best regards,<br />
~FenixRoA</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/marketplace/">The Marketplace</category>
			<dc:creator>FenixRoA</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/marketplace/8764-looking-simple-ui-elements.html</guid>
		</item>
		<item>
			<title>HDD Help?</title>
			<link>http://forums.biorust.com/general-discussions/8762-hdd-help.html</link>
			<pubDate>Fri, 13 Nov 2009 02:31:37 GMT</pubDate>
			<description><![CDATA[Every time I attempt to move an .avi file from the desktop to my external hard disc drive I'm told "the file movietitle.avi is too large for the destination file system." 
 
The file is 5.28 GB in size, the external HDD can hold up to 160 GB of files and I have plenty of room remaining, what the...]]></description>
			<content:encoded><![CDATA[<div>Every time I attempt to move an .avi file from the desktop to my external hard disc drive I'm told &quot;the file movietitle.avi is too large for the destination file system.&quot;<br />
<br />
The file is 5.28 GB in size, the external HDD can hold up to 160 GB of files and I have plenty of room remaining, what the heck is the problem here?<br />
<br />
Thanks in advance!:D</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/general-discussions/">General Discussions</category>
			<dc:creator>Phoenix Wynde</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/general-discussions/8762-hdd-help.html</guid>
		</item>
		<item>
			<title>Fun New Battles Posted!</title>
			<link>http://forums.biorust.com/battles-system-discussion/8761-fun-new-battles-posted.html</link>
			<pubDate>Wed, 11 Nov 2009 19:33:11 GMT</pubDate>
			<description><![CDATA[Our battles section has some new battles to participate in!  Let's get active in these, guys! 
 
*Battle 1: _MUTANT PETS_ (http://www.biorust.com/battles/details/340/)* - FREE-FOR-ALL 
*Subject Type:* Freestyle 
*Skill:* Beginner 
*Design Brief:* k so im sure you have all seen some pics on the web...]]></description>
			<content:encoded><![CDATA[<div>Our battles section has some new battles to participate in!  Let's get active in these, guys!<br />
<br />
<b><i>Battle 1:</i> <a href="http://www.biorust.com/battles/details/340/" target="_blank"><u>MUTANT PETS</u></a></b> - FREE-FOR-ALL<br />
<i><b>Subject Type:</b> </i>Freestyle<br />
<i><b>Skill:</b> </i>Beginner<br />
<b><i>Design Brief:</i></b> k so im sure you have all seen some pics on the web that has 2 or more animals combined into one, or an animal combined with something else. lets see what your crazy mind can come up with. mostly photo manip but other forms of art welcome too.<br />
<b><i>Prize:</i></b> no prize, just glory<br />
<div align="right"><a href="http://www.biorust.com/battles/details/340/" target="_blank">View the battle!</a><br />
<br />
<br />
<div align="left"><b><i>Battle 2:</i> <a href="http://www.biorust.com/battles/details/341/" target="_blank"><u>MOOD LIGHTING</u></a></b> - CONTEST<br />
<i><b>Subject Type:</b> </i>Freestyle<br />
<i><b>Skill:</b> </i>N/A<br />
<b><i>Design Brief:</i></b> take a photo of your favorite well lit place. could be a park or the library. or the office loo or wherever. then using photoshop change the lighting in that well lit place to give it a more romantic or sinister mood.<br />
<b><i>Prize:</i></b> a biorust battle win<br />
<div align="right"><a href="http://www.biorust.com/battles/details/341/" target="_blank">View the battle!</a><br />
<br />
<div align="left"><br />
Let's get involved!<br />
<br />
Alex<br />
</div> </div> </div></div></div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/battles-system-discussion/">Battles System Discussion</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/battles-system-discussion/8761-fun-new-battles-posted.html</guid>
		</item>
		<item>
			<title>4-man Simon Tournament</title>
			<link>http://forums.biorust.com/general-discussions/8760-4-man-simon-tournament.html</link>
			<pubDate>Wed, 11 Nov 2009 15:28:50 GMT</pubDate>
			<description><![CDATA[I just set up a tournament in the arcade.  I need 3 other players... anyone interested? 
 
http://forums.biorust.com/arcade.php?do=viewtourney&amp;tid=4 
 
Alex]]></description>
			<content:encoded><![CDATA[<div>I just set up a tournament in the arcade.  I need 3 other players... anyone interested?<br />
<br />
<a href="http://forums.biorust.com/arcade.php?do=viewtourney&amp;tid=4" target="_blank">http://forums.biorust.com/arcade.php...wtourney&amp;tid=4</a><br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/general-discussions/">General Discussions</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/general-discussions/8760-4-man-simon-tournament.html</guid>
		</item>
		<item>
			<title>Design Brief Inspiration for BioRUST Battles!</title>
			<link>http://forums.biorust.com/battles-system-discussion/8759-design-brief-inspiration-biorust-battles.html</link>
			<pubDate>Wed, 11 Nov 2009 07:19:42 GMT</pubDate>
			<description>Are you stuck trying to decide on a good design breif for a BioRUST battle? 
 
Well, if so, then check out the four following links in which you can browse many battles for inspiration! 
 
*REMEMBER:*  
---Quote (Originally by Tamlin)--- 
 Inspiration only.  No stealing ideas directly.  (Note that...</description>
			<content:encoded><![CDATA[<div>Are you stuck trying to decide on a good design breif for a BioRUST battle?<br />
<br />
Well, if so, then check out the four following links in which you can browse many battles for inspiration!<br />
<br />
<b><font color="Red">REMEMBER:</font></b> <div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				<div>
					Originally Posted by <strong>Tamlin</strong>
					
				</div>
				<div style="font-style:italic"> <i>Inspiration only.  No stealing ideas directly.</i>  (Note that it is fairly easy to find an idea that you like and tweak it a little so that it is unique but still similar to the original idea.)<br />
<br />
If you're setting up a Battle, make sure that you include a <b><i>fully-detailed</i></b> design brief.<br />
<br />
Battles with vague, meaningless design briefs like &quot;Make something cool&quot; or &quot;Anything you made in Photoshop&quot; will be <i><b>removed</b></i>.</div>
			
			<hr />
		</td>
	</tr>
	</table>
</div><a href="http://www.worth1000.com/contests" target="_blank">worth1000</a><br />
<a href="http://www.dpchallenge.com/challenge_archive.php" target="_blank">dpchallenge</a><br />
<a href="http://www.innographx.com/forum/viewforum.php?f=69" target="_blank">Innographx</a><br />
<a href="http://www.mogo-media.com/forums/forumdisplay.php?f=44" target="_blank">PS Techniques</a><br />
<br />
These will inspire you with the next big BioRUST battle!<br />
<br />
Happy battling!<br />
<br />
<font color="DarkRed"><b>NOTE:</b></font> Let's all thank Tamlin for these helpful links.  He was the <a href="!p57822!http://forums.biorust.com/57822-post48.html" target="_blank">first to post them</a> over in the &quot;::Active battles::&quot; thread.  He was also the first to post the second two links, as you will see in the first reply of this thread.  :)  Thanks Tamlin.<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/battles-system-discussion/">Battles System Discussion</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/battles-system-discussion/8759-design-brief-inspiration-biorust-battles.html</guid>
		</item>
		<item>
			<title>The BioRUST Free Stock Photography Thread</title>
			<link>http://forums.biorust.com/photography-photo-manipulation/8758-biorust-free-stock-photography-thread.html</link>
			<pubDate>Wed, 11 Nov 2009 06:32:54 GMT</pubDate>
			<description>*Free Stock Photography Websites* 
I have given myself the task of finding as many places as I can and checking to make sure they are free! 
 
Please post a reply to this thread if any of the links below do not seem to be working, or if you have an addition to suggest for the list. 
 
 
*LEGEND*...</description>
			<content:encoded><![CDATA[<div><b><font face="Arial"><font size="4"><font color="dimgray"><font size="3"><font color="Navy">Free Stock Photography Websites</font></font></font></font></font></b><br />
I have given myself the task of finding as many places as I can and <i>checking</i> to make sure they are free!<br />
<br />
Please post a reply to this thread if any of the links below do not seem to be working, or if you have an addition to suggest for the list.<br />
<br />
<br />
<font face="Arial"><font size="3"><font color="Navy"><b>LEGEND</b></font></font></font><br />
<b>*</b> = May need to contact somebody for permision<br />
<b>NC</b> = Free for non-commercial use<br />
<br />
<br />
<font face="Arial"><font size="3"><font color="Navy"><b>THE LIST</b></font></font></font><ul><li><a href="http://stock.briony.cc/site/index.php" target="_blank">http://stock.briony.cc/site/index.php</a></li>
<li><a href="http://office.microsoft.com/clipart/default.aspx" target="_blank">http://office.microsoft.com/clipart/default.aspx</a></li>
<li><a href="http://orangetrash.d2.hu/" target="_blank">ORANGE-TRASH : pictures about HUNGARY</a></li>
<li><a href="http://www.photolib.noaa.gov/" target="_blank">NOAA Photo Library - HOME</a></li>
<li><a href="http://www.freestockphotos.com/" target="_blank">FreeStockPhotos.com</a></li>
<li><a href="http://www.farmphoto.com/" target="_blank">FarmPhoto.com - View and share your own!</a> - *</li>
<li><a href="http://www.sxc.hu/" target="_blank">http://www.sxc.hu</a></li>
<li><a href="http://www.dieblen.de/" target="_blank">http://www.dieblen.de/</a> - use google to translate</li>
<li><a href="http://www.freeimages.co.uk/" target="_blank">Free Images - Free Stock Photos</a></li>
<li><a href="http://www.mediaphoto.com.br/index.php?leng=eng" target="_blank">Mediaphoto.com.br - media photo Resources and Information.</a></li>
<li><a href="http://gallery.hd.org/index.jsp" target="_blank">Welcome To The Gallery!: FREE for your Website, PC and Projects!</a></li>
<li><a href="http://www.photolibrary.fema.gov/" target="_blank">http://www.photolibrary.fema.gov/</a></li>
<li><a href="http://www.photolibrary.fema.gov/photolibrary/index.jsp" target="_blank">FEMA: Photo Library</a></li>
<li><a href="http://www.nasa.gov/multimedia/imagegallery/index.html" target="_blank">NASA - NASA Featured Images and Galleries</a></li>
<li><a href="http://www.visipix.com/" target="_blank">Visipix</a></li>
<li><a href="http://photobox.ru/" target="_blank">????? ????? ?? photobox.ru</a> - now in english!</li>
<li><a href="http://www.photocase.de/" target="_blank">Photocase.com - Royalty Free Stock Photography that's good for your eyes.</a></li>
<li><a href="http://www.morguefile.com/" target="_blank">http://www.morguefile.com/</a></li>
<li><a href="http://www.pixelperfectdigital.com/" target="_blank">Pixel Perfect Digital - Latest Photography News</a></li>
<li><a href="http://www.imageafter.com/" target="_blank">Image * After - currently 23912 free textures and images available</a></li>
<li><a href="http://kepek.creart.hu/index.php?oldal=1&amp;kat=1&amp;nyelv=en" target="_blank">Royalty Free Photo Search</a></li>
<li><a href="http://www.freemediagoo.com/" target="_blank">Free Images - Free Stock Photos, free background images, royalty free images, free web images</a></li>
<li><a href="http://stock.kriegsnet.com/" target="_blank">http://stock.kriegsnet.com/</a></li>
<li><a href="http://unprofound.com/pix/" target="_blank">unprofound.com : royalty free phototography project - a public domain stock photo collaboration</a></li>
<li><a href="http://www.niblack.org/imagebase/" target="_blank">Welcome to ImageBase</a></li>
<li><a href="http://aarinfreephoto.com/" target="_blank">Aarin Free Photo and Digital Images Home</a></li>
<li><a href="http://blackat9.tripod.com/" target="_blank">Blackat's Free Web Graphics</a></li>
<li><a href="http://www.freefoto.com/index.jsp" target="_blank">FreeFoto.com - Free Pictures - FreeFoto.Com</a> - NC</li>
<li><a href="http://www.photos.external.lmco.com/" target="_blank">http://www.photos.external.lmco.com/</a> - NC</li>
<li><a href="http://www.im-visions.com/" target="_blank">Bildagentur für Lizenzfreie Bilder Intuitivmedia</a> - NC</li>
<li><a href="http://www.stock.b-man.dk/" target="_blank">http://www.stock.b-man.dk/</a> - NC</li>
<li><a href="http://www.photo.net/stock/" target="_blank">Stock Photography</a> - NC - *commerical</li>
<li><a href="http://www.dreamstime.com/free-photos" target="_blank">Dreamstime.com</a></li>
<li><a href="http://pdphoto.org/" target="_blank">PDPhoto</a></li>
<li><a href="http://www.freephotosweb.com/freephotosweb" target="_blank">FreePhotosWeb</a></li>
</ul> <br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/photography-photo-manipulation/"><![CDATA[Photography & Photo Manipulation]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/photography-photo-manipulation/8758-biorust-free-stock-photography-thread.html</guid>
		</item>
		<item>
			<title>Can we get some battles please?</title>
			<link>http://forums.biorust.com/biorust-specific-threads/8757-can-we-get-some-battles-please.html</link>
			<pubDate>Wed, 11 Nov 2009 05:59:42 GMT</pubDate>
			<description><![CDATA[I'm interested in trying these graphic battles on BioRUST but I haven't been able to find a single open battle.  With that said, I'm not experienced with graphic battles to create my own battle. 
 
Can one of our experienced members who knows how this system works step up and create some battles? ...]]></description>
			<content:encoded><![CDATA[<div>I'm interested in trying these graphic battles on BioRUST but I haven't been able to find a single open battle.  With that said, I'm not experienced with graphic battles to create my own battle.<br />
<br />
Can one of our experienced members who knows how this system works step up and create some battles?  I'd like to see a contest, free-for-all and 1-on-1 open...<br />
<br />
How do we expect our new users to be active in a battling system when we don't even have open battles for them to jump in?  If I'm an old-timer on the site, and I don't have the gaw to go creating battles without ever trying one before - then how can we expect our new users to do it?<br />
<br />
We need to, as the elders, members, staff... whatever, as BioRUSTers, we need to keep all of these features active, open and happening.  Otherwise the new users will never become active, and the lurkers will never register.  These are the very features, which are already here and working, that we can use to bring the community back to life.  All we have to do is <b>consistently</b> utilize the damn site.<br />
<br />
We need to keep this place active, even if it's just the regulars chatting it up, so that it feels warm, active and fun to oncomers.<br />
<br />
I believe this strongly.  Sorry for the ramble.  I hope that the BioRUST regulars and staff can pull together and bring this place back to life!  I'm here to help any way I can.<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/biorust-specific-threads/">BioRUST Specific Threads</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/biorust-specific-threads/8757-can-we-get-some-battles-please.html</guid>
		</item>
		<item>
			<title>Shooting at Fort Hood</title>
			<link>http://forums.biorust.com/general-discussions/8756-shooting-fort-hood.html</link>
			<pubDate>Tue, 10 Nov 2009 05:32:45 GMT</pubDate>
			<description>Has anyone heard about the incident in Fort Hood? 
 
 
---Quote (Originally by FOXNews)--- 
*An Army psychiatrist who reportedly feared an impending war deployment is in custody as the sole suspect in a shooting rampage at Fort Hood in Texas that left 12 dead and 31 wounded, an Army official said...</description>
			<content:encoded><![CDATA[<div>Has anyone heard about the incident in Fort Hood?<br />
<br />
<div style="margin:20px; margin-top:5px; ">
	<div class="smallfont" style="margin-bottom:2px">Quote:</div>
	<table cellpadding="6" cellspacing="0" border="0" width="100%">
	<tr>
		<td class="alt2">
			<hr />
			
				<div>
					Originally Posted by <strong>FOXNews</strong>
					
				</div>
				<div style="font-style:italic"><b>An Army psychiatrist who reportedly feared an impending war deployment is in custody as the sole suspect in a shooting rampage at Fort Hood in Texas that left 12 dead and 31 wounded, an Army official said Thursday night.</b></div>
			
			<hr />
		</td>
	</tr>
	</table>
</div>(<a href="http://www.foxnews.com/story/0,2933,572305,00.html" target="_blank">Source</a>)<br />
<br />
Any thoughts?<br />
<br />
Let's keep these families in our prayers.<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/general-discussions/">General Discussions</category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/general-discussions/8756-shooting-fort-hood.html</guid>
		</item>
		<item>
			<title>TrentonCS</title>
			<link>http://forums.biorust.com/showrooms-works-progress/8755-trentoncs.html</link>
			<pubDate>Fri, 06 Nov 2009 19:40:47 GMT</pubDate>
			<description><![CDATA[Hello BioRUST, 
 
I'm in the process of designing a website for an operation I recently began running out of my house.  This "operation" is called Trenton Computer Services or TrentonCS.com.  I recently moved to Trenton, GA and decided to start this as a form of extra income.  I plan to offer...]]></description>
			<content:encoded><![CDATA[<div>Hello BioRUST,<br />
<br />
I'm in the process of designing a website for an operation I recently began running out of my house.  This &quot;operation&quot; is called Trenton Computer Services or TrentonCS.com.  I recently moved to Trenton, GA and decided to start this as a form of extra income.  I plan to offer computer repair/troubleshooting, graphic design, web development, virus/malware removal, etc.<br />
<br />
I've began mocking up a version based off a Tutorial9.net version to get ideas flowing.  After it's completion I intend to take my favorite ideas from this version and create a unique version with some of my own creativity.<br />
<br />
Below is the start of the Tutorial9.net version, it's still not completed.  I will post regular updates of my progress.<br />
<br />
<a href="http://img42.imageshack.us/img42/5493/trentoncs.jpg" target="_blank">Click Here To View TrentonCS WIP</a><br />
<br />
Any feedback, suggestions, ideas or comments would be highly appreciated.<br />
<br />
Thank you in advance everyone.<br />
<br />
Alex</div>

]]></content:encoded>
			<category domain="http://forums.biorust.com/showrooms-works-progress/"><![CDATA[Showrooms & Works In Progress]]></category>
			<dc:creator>ahstanford</dc:creator>
			<guid isPermaLink="true">http://forums.biorust.com/showrooms-works-progress/8755-trentoncs.html</guid>
		</item>
	</channel>
</rss>
