<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018780" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018780</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/registerglobals#comment-1110828</link>
    <description> &lt;p&gt;I use sessions for my site for dynamic info&lt;br /&gt;
I&#039;d suggest using that&lt;/p&gt;
 </description>
     <pubDate>Wed, 26 Jun 2002 20:58:49 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1110828 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/registerglobals#comment-1110827</link>
    <description> &lt;p&gt;You could also use sessions. If you&#039;ve compiled PHP with --enable-trans-sid, then if the user don&#039;t accept cookies, it will automatically put the session info in the URL. Very useful feature. Also this way you don&#039;t store any information on the user&#039;s computer, everything is stored on the server.&lt;/p&gt;
 </description>
     <pubDate>Wed, 26 Jun 2002 20:19:08 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110827 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/registerglobals#comment-1110826</link>
    <description> &lt;p&gt;In response to nike_guy_man:&lt;br /&gt;
If they were static variables like my example, yes you could, but in the real world scenario that I need to start converting, the variables are all dynamic, are different for each user and used in a shopping cart to identify user info throughout the various cart scripts.&lt;/p&gt;
&lt;p&gt;In response to zollett:&lt;br /&gt;
Cookies are an option, but isn&#039;t really the way I want to pass variables. Have discovered that there are always a few people out there that think cookies are the &quot;Great Evil&quot; and disable them. Shopping cart uses cookies now, but in a very limited basis and never in an important area of the cart. Just to identify returning customers. All important areas currently pass the variables in the link url or via form input.&lt;/p&gt;
 </description>
     <pubDate>Wed, 26 Jun 2002 20:13:08 +0000</pubDate>
 <dc:creator>cds</dc:creator>
 <guid isPermaLink="false">comment 1110826 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/registerglobals#comment-1110825</link>
    <description> &lt;p&gt;If you would like to use cookies, here&#039;s some simple sample of code..&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;// In test.php&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;setcookie&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;foo\&quot;, \&quot;foo\&quot;);&lt;br /&gt;&amp;nbsp; setcookie(\&quot;bar\&quot;, \&quot;bar\&quot;);&lt;br /&gt;&lt;br /&gt;// Or a little more advanced..&lt;br /&gt;&amp;nbsp; setcookie(\&quot;foo\&quot;, \&quot;foo\&quot;, \&quot;\&quot;, \&quot;/\&quot;, \&quot;domain.com\&quot;);&lt;br /&gt;&amp;nbsp; setcookie(\&quot;bar\&quot;, \&quot;bar\&quot;, \&quot;\&quot;, \&quot;/\&quot;, \&quot;domain.com\&quot;);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// In test2.php&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$foo&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_COOKIE&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;\&quot;foo\&quot;];&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$bar&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_COOKIE&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;\&quot;bar\&quot;];&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;You can find more information about cookies on &lt;a href=&quot;http://www.php.net/manual/en/function.setcookie.php&quot; class=&quot;bb-url&quot;&gt;http://www.php.net/manual/en/function.setcookie.php&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 26 Jun 2002 19:58:32 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110825 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/registerglobals#comment-1110824</link>
    <description> &lt;p&gt;You could use include/require or something like it&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;test2&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;php&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;:&lt;br /&gt;&lt;br /&gt;require(&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;test.php&#039;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;);&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
How&#039;s that work for you?&lt;/p&gt;
 </description>
     <pubDate>Wed, 26 Jun 2002 19:49:22 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1110824 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
