The ProgrammersTalk Community
Forum Register Search Today's Posts Mark Forums Read
Register

Go Back   The ProgrammersTalk Community > Web Programming > PHP


Welcome to the The ProgrammersTalk Community forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.
Reply
 
LinkBack Thread Tools    Display Modes   
  #11 (permalink)  
Old 08-10-2008, 09:13 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 442
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
Interesting. Try this:

PHP Code:
<?php
//--------------------------Set these paramaters--------------------------

// Subject of email sent to you.
$subject 'Submitted Applicant';

// Your email address. This is where the form information will be sent.
$emailadd '**edited-out email addresses**';

// Where to redirect after form is processed.
$url 'http://www.disbrowpr.org/thankyou.htm';

// Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
$req '0';

// --------------------------Do not edit below this line--------------------------
$text "Results from form:";
$line '
'
;
$log __file__.':'.__line__."\n".print_r($_POST,true)."\n";
foreach (
$_POST as $key => $value) {
  
$log .= __file__.':'.__line__."\n";
  if (
$req == '1') {
    
$log .= __file__.':'.__line__."\n";
    if (
$value == ''){
      
$log .= __file__.':'.__line__."\n";
      echo 
"$key is empty";
      die;
    }
  }
  
$j strlen($key);
  if (
$j 20) {
    
$log .= __file__.':'.__line__."\n";
    echo 
"Name of form element $key cannot be longer than 20 characters";
    die;
  }
  
$j 20 $j;
  
$space ' ';
  for (
$i 1$i <= $j$i++) {
    
$log .= __file__.':'.__line__."\n";
    
$space .= ' ';
  }
  
$value str_replace("\n"$line$value);
  
$conc $key.":".$space.$value.$line;
  
$text .= $conc;
  
$log .= __file__.':'.__line__."\n\n\n*************************\n".$text."\n*************************";
  
$space ' ';  
}
mail($emailadd$subject$text'From: '.$emailadd.'');
echo 
'<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
?>
And then post the results.

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #12 (permalink)  
Old 08-11-2008, 05:25 PM
disbrowpr disbrowpr is offline
Novice
Join Date: Aug 2008
Location: Rolla, Mo
Posts: 14
iTrader: (0)
disbrowpr is on a distinguished road
Ok, tried it, and here are the results,

Quote:
Results from form:

*sigh* thought it was going to work =D

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #13 (permalink)  
Old 08-11-2008, 05:29 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 442
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
Damn. I must have been tired when I wrote that. Never told it to output the data! Silly me. Try this:

PHP Code:
<?php
 
//--------------------------Set these paramaters--------------------------

// Subject of email sent to you.
$subject 'Submitted Applicant';

// Your email address. This is where the form information will be sent.
$emailadd '**edited-out email addresses**';

// Where to redirect after form is processed.
$url 'http://www.disbrowpr.org/thankyou.htm';

// Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
$req '0';

// --------------------------Do not edit below this line--------------------------
$text "Results from form:";
$line '
'
;
$log __file__.':'.__line__."\n".print_r($_POST,true)."\n";
foreach (
$_POST as $key => $value) {
  
$log .= __file__.':'.__line__."\n";
  if (
$req == '1') {
    
$log .= __file__.':'.__line__."\n";
    if (
$value == ''){
      
$log .= __file__.':'.__line__."\n";
      echo 
"$key is empty";
      die;
    }
  }
  
$j strlen($key);
  if (
$j 20) {
    
$log .= __file__.':'.__line__."\n";
    echo 
"Name of form element $key cannot be longer than 20 characters";
    die;
  }
  
$j 20 $j;
  
$space ' ';
  for (
$i 1$i <= $j$i++) {
    
$log .= __file__.':'.__line__."\n";
    
$space .= ' ';
  }
  
$value str_replace("\n"$line$value);
  
$conc $key.":".$space.$value.$line;
  
$text .= $conc;
  
$log .= __file__.':'.__line__."\n\n\n*************************\n".$text."\n*************************";
  
$space ' ';  
}
mail($emailadd$subject$text.$log'From: '.$emailadd.'');
echo 
$log;
//echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
?>
This time I made it email it to you and display it on the screen. I'll need both bits of data. Sorry about the screw up.
</div>

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #14 (permalink)  
Old 08-12-2008, 03:49 PM
disbrowpr disbrowpr is offline
Novice
Join Date: Aug 2008
Location: Rolla, Mo
Posts: 14
iTrader: (0)
disbrowpr is on a distinguished road
Ok, So here is the new issue! =DD lol

This is what the e-mail says when I get it,

Quote:
Results from form:/hermes/bosweb/web185/b1850/sl.disbrowm/public_html/sendresults.php:20
Array
(
)

And then when the page loads it doesnt go to that thank you page, this is what it says


Quote:
/hermes/bosweb/web185/b1850/sl.disbrowm/public_html/sendresults.php:20

!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} @font-face {font-family:Consolas; panose-1:2 11 6 9 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:modern; mso-font-pitch:fixed; mso-font-signature:-1610611985 1073750091 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} p.MsoPlainText, li.MsoPlainText, div.MsoPlainText {mso-style-noshow:yes; mso-style-priority:99; mso-style-link:"Plain Text Char"; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.5pt; font-family:Consolas; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} span.PlainTextChar {mso-style-name:"Plain Text Char"; mso-style-noshow:yes; mso-style-priority:99; mso-style-unhide:no; mso-style-locked:yes; mso-style-link:"Plain Text"; mso-ansi-font-size:10.5pt; mso-bidi-font-size:10.5pt; font-family:Consolas; mso-ascii-font-family:Consolas; mso-hansi-font-family:Consolas;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman"; mso-bidi-theme-font:minor-bidi;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> And thats all that is on the page. So... lol.


Im stumped.


Your already appreciated for helping me out with this! =D

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #15 (permalink)  
Old 08-12-2008, 03:55 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 442
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
That was helpful. It's saying that there is no data being posted for sending in the email. Let's see the input form code.

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #16 (permalink)  
Old 08-14-2008, 05:20 PM
disbrowpr disbrowpr is offline
Novice
Join Date: Aug 2008
Location: Rolla, Mo
Posts: 14
iTrader: (0)
disbrowpr is on a distinguished road
What do you mean by the input form code?

The HTML for the Form Code?

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #17 (permalink)  
Old 08-14-2008, 05:22 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 442
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
Yes. Be advised, also, that I will be unavailable for a few days starting tomorrow, so if you reply after that, you'll have to wait until Wed/Thurs of next week for me to get back to you. Seems like others don't have any clues about this either.

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
  #18 (permalink)  
Old 08-15-2008, 10:36 AM
disbrowpr disbrowpr is offline
Novice
Join Date: Aug 2008
Location: Rolla, Mo
Posts: 14
iTrader: (0)
disbrowpr is on a distinguished road
Code:
    <div class="PostContent">
              <form action="" method="post" name="form1" class="style6" id="form1">
                <label>First Name:
                <input type="text" name="textfield" />
                </label>
                <br />
                <label>Last Name:
                <input type="text" name="textfield2" />
                </label>
                <br />
                <br />
                Gender
                <label>
                <select name="select9">
                  <option>Male</option>
                  <option>Female</option>
                  <option selected="selected"> </option>
                </select>
                </label>
                <br />
                <br />
                Date Of Birth [mm/dd/yyyy]: 
                <label>
                <select name="select4" size="1">
                  <option>1</option>
                  <option>2</option>
                  <option>3</option>
                  <option>4</option>
                  <option>5</option>
                  <option>6</option>
                  <option>7</option>
                  <option>8</option>
                  <option>9</option>
                  <option>10</option>
                  <option>11</option>
                  <option>12</option>
                  <option selected="selected"> </option>
                </select>
                </label>
                <label>
                <select name="select5" size="1">
                  <option>1</option>
                  <option>2</option>
                  <option>3</option>
                  <option>4</option>
                  <option>5</option>
                  <option>6</option>
                  <option>7</option>
                  <option>8</option>
                  <option>9</option>
                  <option>10</option>
                  <option>11</option>
                  <option>12</option>
                  <option>13</option>
                  <option>14</option>
                  <option>15</option>
                  <option>16</option>
                  <option>17</option>
                  <option>18</option>
                  <option>19</option>
                  <option>20</option>
                  <option>21</option>
                  <option>22</option>
                  <option>23</option>
                  <option>24</option>
                  <option>25</option>
                  <option>26</option>
                  <option>27</option>
                  <option>28</option>
                  <option>29</option>
                  <option>30</option>
                  <option>31</option>
                  <option selected="selected"> </option>
                </select>
                </label>
                <label>
                <select name="select6">
                  <option>1930</option>
                  <option>1931</option>
                  <option>1932</option>
                  <option>1933</option>
                  <option>1934</option>
                  <option>1935</option>
                  <option>1936</option>
                  <option>1937</option>
                  <option>1938</option>
                  <option>1939</option>
                  <option>1940</option>
                  <option>1941</option>
                  <option>1942</option>
                  <option>1943</option>
                  <option>1944</option>
                  <option>1945</option>
                  <option>1946</option>
                  <option>1947</option>
                  <option>1948</option>
                  <option>1949</option>
                  <option>1950</option>
                  <option>1951</option>
                  <option>1952</option>
                  <option>1953</option>
                  <option>1954</option>
                  <option>1955</option>
                  <option>1956</option>
                  <option>1957</option>
                  <option>1958</option>
                  <option>1959</option>
                  <option>1960</option>
                  <option>1961</option>
                  <option>1962</option>
                  <option>1963</option>
                  <option>1964</option>
                  <option>1965</option>
                  <option>1966</option>
                  <option>1967</option>
                  <option>1968</option>
                  <option>1969</option>
                  <option>1970</option>
                  <option>1971</option>
                  <option>1972</option>
                  <option>1973</option>
                  <option>1974</option>
                  <option>1975</option>
                  <option>1976</option>
                  <option>1977</option>
                  <option>1978</option>
                  <option>1979</option>
                  <option>1980</option>
                  <option>1981</option>
                  <option>1982</option>
                  <option>1983</option>
                  <option>1984</option>
                  <option>1985</option>
                  <option>1986</option>
                  <option>1987</option>
                  <option>1988</option>
                  <option>1989</option>
                  <option>1999</option>
                  <option selected="selected"> </option>
                </select>
                <br />
                </label>
                <br />
                Phone Number:
                <label>
                <input name="textfield3" type="text" value="" size="3" maxlength="3" />
                </label>
                -
                <label>
                <input name="textfield4" type="text" size="3" maxlength="3" />
                </label>
                -
                <label>
                <input name="textfield5" type="text" size="4" maxlength="4" />
                </label>
                <br />
                <br />
                E-Mail:
                <label>
                <input type="text" name="textfield6" />
                </label>
                <br />
                <br />
                <label>Marital Status
                <select name="select">
                  <option>Single</option>
                  <option>Married</option>
                  <option>Divorced</option>
                  <option>Widowed</option>
                  <option selected="selected"> </option>
                                                                </select>
                </label>
                <br />
              If you are married is you spouse interested: 
              <select name="select2">
                <option>Yes</option>
                <option>No</option>
                <option selected="selected"> </option>
                </select>
              <br />
              <br />
              Do You Have Children: 
              <label>
              <select name="select3">
                <option>Yes</option>
                <option>No</option>
                <option selected="selected"> </option>
              </select>
              </label>
              <br />
              If Yes, How Many: 
              <label>
              <select name="select7" size="1">
                <option>1</option>
                <option>2</option>
                <option>3</option>
                <option>4</option>
                <option>5</option>
                <option selected="selected"> </option>
              </select>
              </label>
              <br />
              <br />
              Religious Affiliation*:
              <label>
              <select name="select8">
                <option>Protestant</option>
                <option>Catholic</option>
                <option>Agnostic</option>
                <option>Muslim</option>
                <option>Jewish</option>
                <option>Buddhist</option>
                <option>Pagan</option>
                <option>Wiccan</option>
                <option>Hindu</option>
                <option>Christianity - Other</option>
                <option>Other</option>
                <option>No Preferance</option>
                <option>I Dont Know</option>
                <option>Prefer Not To Say</option>
                <option selected="selected"> </option>
                                                        </select>
              </label> 
              <br />
              <br />
              Do you have any paranormal experience [i.e. Other Groups] 
              <label>
              <select name="select10">
                <option>Yes</option>
                <option>No</option>
                <option selected="selected"> </option>
              </select>
              </label>
              <br />
              If Yes, how many years: 
              <label>
              <select name="select11">
                <option>1</option>
                <option>2</option>
                <option>3</option>
                <option>4</option>
                <option>5</option>
                <option>6</option>
                <option>7</option>
                <option>8</option>
                <option>9</option>
                <option>10</option>
                <option>11</option>
                <option>12</option>
                <option>13</option>
                <option>14</option>
                <option>15</option>
                <option>16</option>
                <option>17</option>
                <option>18</option>
                <option>19</option>
                <option>20</option>
                <option>20+</option>
                <option selected="selected"> </option>
              </select>
              </label>

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by disbrowpr : 08-15-2008 at 10:41 AM.
Reply With Quote
  #19 (permalink)  
Old 08-15-2008, 10:39 AM
disbrowpr disbrowpr is offline
Novice
Join Date: Aug 2008
Location: Rolla, Mo
Posts: 14
iTrader: (0)
disbrowpr is on a distinguished road
Code:
<br />
              If Yes, may we contact them: 
              <label>
              <input name="radiobutton" type="radio" value="radiobutton" />
              Yes</label>
              <label>
              <input name="radiobutton" type="radio" value="radiobutton" />
              No</label>
              <br />
              <label>Group Name
              <input type="text" name="textfield7" />
              </label>
              <label>Group Number
              <input name="textfield8" type="text" size="3" maxlength="3" />
              </label>
              -
              <label>
              <input name="textfield9" type="text" size="3" maxlength="3" />
              </label>
              -
              <label>
              <input name="textfield10" type="text" size="4" maxlength="4" />
              </label>
              <br />
              <label>Group Name
              <input type="text" name="textfield72" />
              </label>
              <label>Group Number
              <input name="textfield82" type="text" size="3" maxlength="3" />
              </label>
-
<label>
<input name="textfield92" type="text" size="3" maxlength="3" />
</label>
-
<label>
<input name="textfield102" type="text" size="4" maxlength="4" />
</label>
<br />
<label>Group Name
<input type="text" name="textfield73" />
</label>
<label>Group Number
<input name="textfield83" type="text" size="3" maxlength="3" />
</label>
-
<label>
<input name="textfield93" type="text" size="3" maxlength="3" />
</label>
-
<label>
<input name="textfield103" type="text" size="4" maxlength="4" />
</label>
<br />
<br />
              Why are you interested in paranormal investigating: 
              <label>
              <textarea name="textfield11"></textarea>
              </label>
              <br />
              <br />
              Have you had any paranormal experiences [i.e. seeing shadows, orbs, feeling things, smelling things]: 
              <label>
              <textarea name="textfield12"></textarea>
              </label>
              <br />
              <br />
              Do you have any abilities: 
              <label>
              <textarea name="textfield13">Please List</textarea>
              </label>
              <br />
              <br />
              How did you hear about us: 
              <label>
              <textarea name="textfield14"></textarea>
              </label>
              <br />
              <br />
              Do you have equipment you can  bring to investigations [cameras, video equip. EMF  Meters, etc, list brand and types if possible]: 
              <label>
              <textarea name="textfield15">Please List</textarea>
              </label>
              <p align="center"><br />
                Privacy Policy<br />
                <label>
                <textarea name="textfield16" cols="60" rows="5">Disbrow Paranormal Research takes your right to privacy seriously, and wants you to feel comfortable with applying with us. This privacy policy deals with personally-identifiable information (referred to as "data" below) that may be collected by applying. This policy does not apply to other entities that are not owned or controlled by the site editor, nor does it apply to persons that are not employees or agents of the site editor, or that are not under the site editor's control.

1. Collection of data
Registration for an application on this site requires the information on the application. As on many web sites, the site editor may also automatically receive general information that is contained in server log files, such as your IP address, and cookie information. Information about how advertising may be served on this site (if it is indeed the site editor's policy to display advertising) is set forth below.

2. Cookies
Like many web sites, this web site sets and uses cookies to enhance your user experience -- to remember your personal settings, for instance. Advertisements may display on this web site and, if so, may set and access cookies on your computer; such cookies are subject to the privacy policy of the parties providing the advertisement. However, the parties providing the advertising do not have access to this site's cookies. These parties usually use non-personally-identifiable or anonymous codes to obtain information about your visits to this site. However Disbrow Paranormal Research does not use any type of advertisement.

3. Minors
Disbrow Paranormal Research does not allow persons who are aged 17 or younger to apply for membership.

4. Changes to this privacy policy
Changes may be made to this policy from time to time. You will be notified of substantial changes to this policy either by through the posting of a prominent announcement on the site, and/or by a mail message sent to the e-mail address you have provided, which is stored within your application.

5. Contact information
If you have any questions about this policy or about this web site, please feel free to contact the site administrator.</textarea>
                </label>
                <br />
                Do you accept the privacy policy: 
                <label>
                <input name="radiobutton" type="radio" value="radiobutton" />
                Yes</label>
                <label>
                <input name="radiobutton" type="radio" value="radiobutton" />
                No</label>
                <br />
                <br />
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100" height="22" title="Submit">
                  <param name="movie" value="button1.swf" />
                  <param name="quality" value="high" />
                  <param name="bgcolor" value="#ECE9D8" />
                  <embed src="button1.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100" height="22" bgcolor="#ECE9D8"></embed>
                </object>
                <br />
                <br />
                </p>
              </form>
              <p><br />
              </p>
Here is Part 2 of the HTML for it

This is the HTML for the Form on the page. Hope it is somewhat helpful. And Thanks for the heads up about you not being on for a few days!

__________________

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!

Last edited by disbrowpr : 08-15-2008 at 10:42 AM.
Reply With Quote
  #20 (permalink)  
Old 08-20-2008, 04:06 PM
TeraTask's Avatar
TeraTask TeraTask is offline
PT Admin
Awards Showcase
Quality Tutorial Quality Tutorial Quality Tutorial 
Total Awards: 3
Join Date: Jun 2007
Location: Reno, NV
Posts: 442
iTrader: (0)
TeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to beholdTeraTask is a splendid one to behold
Are you submitting this via a Flash submit button? If so, I don't know how to help you on that as I don't know Flash. I did take the code as provided above, with the parsing routine I suggested and test it on our live server with 1 change: I commented out your Flash stuff and put in a normal submit button.

Everything worked fine.

__________________
Jeremy Miller
Content Farmer - Optimized Automated Blog Posting

Digg this Post! Del.Icio.Us this Post! Technorati this Post! Furl this Post! Mister Wong this Post! Newsvine this Post! Spurl this Post! Reddit this Post! Netscape this Post!
Reply With Quote
Reply