<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1001173" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1001173</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/more-incredibly-simple-problems#comment-1005118</link>
    <description> &lt;p&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;SNIP&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
I figured out what it was so no problems&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;SNIP&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/p&gt;
&lt;p&gt;[This message has been edited by minton (edited 23 June 2000).]&lt;/p&gt;
 </description>
     <pubDate>Thu, 22 Jun 2000 20:53:00 +0000</pubDate>
 <dc:creator>minton</dc:creator>
 <guid isPermaLink="false">comment 1005118 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/more-incredibly-simple-problems#comment-1005117</link>
    <description> &lt;p&gt;Near the top of one of your script you may see a line somewhat similar to this:&lt;/p&gt;
&lt;p&gt;$password = $formdata{&#039;password&#039;};&lt;/p&gt;
&lt;p&gt;Just copy that line and paste in a copy like this.&lt;/p&gt;
&lt;p&gt;$mode = $formdata{&#039;mode&#039;);&lt;/p&gt;
&lt;p&gt;Then in the script, use the script format that I posted in the first post to seperate the different parts of your script.&lt;/p&gt;
&lt;p&gt;Then in the form that is to send your user to the specific area put in between the &amp;lt;form&amp;gt;&amp;lt;/form&amp;gt; tags:&lt;/p&gt;
&lt;p&gt;&amp;lt;input type=&quot;hidden&quot; name=&quot;mode&quot; value=&quot;password&quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;That should do ya...&lt;/p&gt;
&lt;p&gt;VulKen&lt;br /&gt;
&lt;strong&gt;NO MORE BOTTLES OF BEER ON THE WALL?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;[This message has been edited by VulKen (edited 20 June 2000).]&lt;/p&gt;
 </description>
     <pubDate>Wed, 21 Jun 2000 00:39:00 +0000</pubDate>
 <dc:creator>Ken Elliott</dc:creator>
 <guid isPermaLink="false">comment 1005117 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/more-incredibly-simple-problems#comment-1005116</link>
    <description> &lt;p&gt;Thanks Vulken! I got the script working first time!&lt;/p&gt;
&lt;p&gt;About the linking to a specific part. I wm going to be making a script with essentially two parts in it. The password to protect it (duh  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; ) and the actual news script (the part which will take the contents of twio text boxes and print to a new page). Do I need the form action of the form with the text boxes in to link to a specific part of a script or will it automatically find the part in the script by it self?&lt;/p&gt;
&lt;p&gt;Thanks for you help Vulken  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
Thomas Minton&lt;br /&gt;
&lt;a href=&quot;http://www.javaplace.co.uk&quot; class=&quot;bb-url&quot;&gt;The JavaScript Place&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.bepaid.com/users.rhtml?REFID=10138056&quot; class=&quot;bb-url&quot;&gt;Get paid $20 - $160 an hour for viewing adverts&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 20 Jun 2000 20:20:00 +0000</pubDate>
 <dc:creator>minton</dc:creator>
 <guid isPermaLink="false">comment 1005116 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/more-incredibly-simple-problems#comment-1005115</link>
    <description> &lt;p&gt;On The lines above line 66 you have not escaped your &quot; double quotes. Just put a \slash before each double quote inside each print statement, and you should be fine.&lt;/p&gt;
&lt;p&gt;I&#039;ve yet to do this, but you can link to a specific part of your script by using if statements.&lt;/p&gt;
&lt;p&gt;Put in one of your forms &amp;lt;input type=&quot;hidden&quot; name=&quot;mode&quot; value=&quot;mainlogin&quot;&amp;gt;&lt;br /&gt;
Then in your script put everything needed for mainlogin within a if statement something like this.&lt;/p&gt;
&lt;p&gt;if ($mode eq &quot;mainlogin&quot;) {&lt;br /&gt;
 &lt;strong&gt;Mainlogin code goes here&lt;/strong&gt;&lt;br /&gt;
} elsif ($mode eq &quot;somethingelse&quot;) {&lt;br /&gt;
 &lt;strong&gt;Other code goes here&lt;/strong&gt;&lt;br /&gt;
} else {&lt;br /&gt;
print &quot;NO MODE WAS SELECTED&quot;;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;I think that would work&lt;br /&gt;
VulKen&lt;br /&gt;
&lt;strong&gt;I GOT BEEF&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;I think this would actually fix my problem too. Wow.  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;br /&gt;
[This message has been edited by VulKen (edited 20 June 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by VulKen (edited 20 June 2000).]&lt;/p&gt;
 </description>
     <pubDate>Tue, 20 Jun 2000 19:52:00 +0000</pubDate>
 <dc:creator>Ken Elliott</dc:creator>
 <guid isPermaLink="false">comment 1005115 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
