<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1023719" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1023719</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145636</link>
    <description> &lt;p&gt;I didn&#039;t know there was an &quot;industry standard&quot;...geez!  lol.  It all works though, thanks.&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Feb 2004 01:33:26 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1145636 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145585</link>
    <description> &lt;p&gt;You&#039;re right, Saeed, and this is the third or fourth thread where that wily Kyle has tripped people up by insisting on using _row instead of _array! D&#039;oh!&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Feb 2004 04:31:15 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1145585 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145582</link>
    <description> &lt;p&gt;it works fantastically wonderful! (british accent)&lt;/p&gt;
&lt;p&gt;lol...thanks.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Feb 2004 04:17:48 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1145582 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145581</link>
    <description> &lt;p&gt;Actually, what all of you missed is that Eskater05 is using &lt;strong&gt;mysql_fetch_row()&lt;/strong&gt; to get the data from MySQL. This function stores the data in a numeric array ($emails[0], $emails[1], etc). Therefore, the variable $emails[&#039;email&#039;] is empty, hence no emails being sent.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;mysql_fetch_row()&lt;/strong&gt; = $array[0], $array[1], etc&lt;br /&gt;
&lt;strong&gt;mysql_fetch_assoc()&lt;/strong&gt; = $array[&#039;name&#039;], $array[&#039;email&#039;], etc&lt;br /&gt;
&lt;strong&gt;mysql_fetch_array()&lt;/strong&gt; = Combination of both above functions&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Feb 2004 01:28:40 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1145581 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145578</link>
    <description> &lt;p&gt;I&#039;m still getting an error, so I&#039;ll talk to my host...I checked documentation and such, nothing on it at all.  Thanks for the help.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Feb 2004 00:14:29 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1145578 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145545</link>
    <description> &lt;p&gt;No. that will send the first email to the first address.  The second email to the first and second addresses.  The third.. etc.&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;// ...connection...&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$query &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_query&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT email FROM elist\&quot;);&lt;br /&gt;while (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$emails&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = mysql_fetch_row(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$query&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;)) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo \&quot;Emailing &#039;\&quot;.&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$emails&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;email&#039;].\&quot;&#039;\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (mail(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$emails&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;email&#039;],&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_POST&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;subject&#039;],&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_POST&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;body&#039;])) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo \&quot; - OK\n&amp;lt;br /&amp;gt;\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo \&quot; - ERROR\n&amp;lt;br /&amp;gt;\&quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // break;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;// ...closing...&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Feb 2004 06:44:49 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1145545 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145539</link>
    <description> &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: #007700&quot;&gt;...&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;connection&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;$query &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_query&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT email FROM elist\&quot;); &lt;br /&gt;while (&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$emails&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = mysql_fetch_row(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$query&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;)) { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$sendto&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = \&quot;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$sendto&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$emails&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;email&#039;]\&quot;; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mail(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$sendto&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_POST&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;subject&#039;],&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$_POST&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;[&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&#039;body&#039;]); &lt;br /&gt;}; &lt;br /&gt;&lt;br /&gt;...closing... &lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;I think....&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Feb 2004 04:43:26 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1145539 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/emailing#comment-1145538</link>
    <description> &lt;p&gt;check on the apache configs. the other thing can be mx tables. places like hotmail and yahoo wont accept if mx tables aren&#039;t correct&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Feb 2004 02:19:57 +0000</pubDate>
 <dc:creator>m3rajk</dc:creator>
 <guid isPermaLink="false">comment 1145538 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
