<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018551" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018551</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109261</link>
    <description> &lt;p&gt;If you don&#039;t have access to your php.ini file, you use method 2.&lt;/p&gt;
&lt;p&gt;It is now disabled for security reasons.  Which is a good thing.  But it also blows up a lot of scripts.  So if your running sites that are dependant on these old scripts and need a quick fix...&lt;/p&gt;
 </description>
     <pubDate>Tue, 21 May 2002 16:21:37 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1109261 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109235</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: Method 1: Alter your php.ini and set it to true &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;So what does somebody do if they can&#039;t access their php.ini file? The PHP team disabled it for a reason, so it makes sense to start using the new method, as the old way may become depreciated over time and not be usable at all...&lt;/p&gt;
&lt;p&gt;arin&lt;/p&gt;
 </description>
     <pubDate>Tue, 21 May 2002 08:04:42 +0000</pubDate>
 <dc:creator>arin</dc:creator>
 <guid isPermaLink="false">comment 1109235 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109226</link>
    <description> &lt;p&gt;That is only because PHP 4.2 set the default for register_globals to false, when it&#039;s always been true in previous versions.  Easy fix....&lt;/p&gt;
&lt;p&gt;Method 1: Alter your php.ini and set it to true&lt;/p&gt;
&lt;p&gt;Method 2: Add this line to your .htaccess file:&lt;br /&gt;
php_flag register_globals on&lt;/p&gt;
&lt;p&gt;If you want to use method 2...&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Quoted from PHP Docs: &lt;a href=&quot;http://www.php.net/manual/en/configuration.php&quot; class=&quot;bb-url&quot;&gt;Chapter 3. Configuration&lt;/a&gt; : &lt;a href=&quot;http://www.php.net/manual/en/configuration.php#ini.register-globals&quot; class=&quot;bb-url&quot;&gt;register_globals &lt;/a&gt;&lt;/em&gt;&lt;strong&gt;&lt;br /&gt;
Please note that you need to set AllowOveride All in your Directory block in the apache config file for this to work.&lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
 </description>
     <pubDate>Tue, 21 May 2002 07:06:52 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1109226 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109216</link>
    <description> &lt;p&gt;Versions of PHP before 4.2 allowed to you access form variables as if they were global variables. To use them, you need to define each variable as a global variable:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;global $var1, $var2, $var3; // ...&lt;/code&gt;&#039; &lt;/p&gt;
&lt;p&gt;This will need to go at the top of your send.php file, and it will also be needed inside any functions you define there. &lt;/p&gt;
&lt;p&gt;In version 4.2 and later, the direct access of all system and environment variables has been disabled. You will need to refer to &lt;a href=&quot;http://www.php.net/manual/en/language.variables.predefined.php#language.variables.superglobals&quot; class=&quot;bb-url&quot;&gt;http://www.php.net/manual/en/language.variables.predefined.php#language.variables.superglobals&lt;/a&gt; for more details on how to access them (I&#039;m not using PHP4.2 yet, but this change will stay for future versions, so it&#039;s a good idea to get into the habit now!)&lt;/p&gt;
&lt;p&gt;Good luck!&lt;br /&gt;
arin&lt;/p&gt;
 </description>
     <pubDate>Tue, 21 May 2002 04:14:13 +0000</pubDate>
 <dc:creator>arin</dc:creator>
 <guid isPermaLink="false">comment 1109216 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109111</link>
    <description> &lt;p&gt;Useful link: &lt;a href=&quot;http://www.php.net/manual/en/language.variables.external.php&quot; class=&quot;bb-url&quot;&gt;http://www.php.net/manual/en/language.variables.external.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 18 May 2002 13:23:59 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1109111 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109098</link>
    <description> &lt;p&gt;If I remember right, use the GET method for your form, or set the variables again in send.php using $HTTP_POST_VARS (I think).&lt;/p&gt;
&lt;p&gt;I wonder if it matters, but what version of PHP are you running?&lt;/p&gt;
 </description>
     <pubDate>Sat, 18 May 2002 08:45:05 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1109098 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/php-form-mail-problem#comment-1109092</link>
    <description> &lt;p&gt;Moving this to scripting. Hope someone there can help you! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 18 May 2002 06:11:48 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1109092 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
