|  | Posted by Chirantan Ghosh on 08/24/05 18:25 
Hi Richard ,
 Jay helped me with the Global setting but the problem remains the same. Can
 you enlighten please?
 
 /////////[snip]
 > If you are going to do this, you might as well just turn
 > register_globals back "On"
 >
 > You've got the SAME security problem -- You just are doing it to
 > yourself instead of letting PHP do it to you.
 >
 /////////[/snip]
 
 Apparently the register_globals is "On"
 My site's PHP info is available at http://www.primarywave.com/myPHPinfo.php
 
 The problem still in hand is:
 ==================
 ////[snip]
 On a different Note,
 This page is the original working version I have:
 http://www.primarywave.com/BrokerOutpost_Contact.php
 
 This is the page I want to work allowing the check box  values to be
 reported.
 http://www.primarywave.com/BrokerOutpost_ContNAGHAM.php
 
 I kept almost everything identical so Im at loss why the 2nd doesn't even
 send the email
 ////[snip]
 
 Thanks,
 C
 
 
 ----- Original Message -----
 From: "Richard Lynch" <ceo@l-i-e.com>
 To: "Chirantan Ghosh" <cghosh@primarywave.com>
 Cc: "John Nichel" <john@kegworks.com>; <php-general@lists.php.net>
 Sent: Tuesday, August 23, 2005 2:00 AM
 Subject: Re: [PHP] PHP Printing Error Help
 
 
 > On Mon, August 22, 2005 12:56 pm, Chirantan Ghosh wrote:
 >> //////////////[snip]
 >>> You probably want to move into the relm of array's.  For each one of
 >>> your
 >>> checkboxes, you can do this...
 >>>
 >>> <input type="checkbox" name="InterestedNumber[]"
 >>> value="1-877-HOMECASH">
 >> /////////////[/snip]
 >>
 >> I did look up  ARRAY.  I just didn't understand how I can insert a
 >> table(
 >> "InterestedNumber") in an arrey so I could put something like this for
 >> form
 >> processing:
 >> ------------------------------------------------------
 >> <?
 >> foreach($HTTP_GET_VARS as $indx => $value) {
 >>     ${$indx}=$value;
 >> }
 >> foreach($HTTP_POST_VARS as $indx => $value) {
 >>     ${$indx}=$value;
 >> }
 >
 > Gak.
 >
 > If you are going to do this, you might as well just turn
 > register_globals back "On"
 >
 > You've got the SAME security problem -- You just are doing it to
 > yourself instead of letting PHP do it to you.
 >
 >> if($sendmessage == "yes"){
 >>
 >>  $mailBody .= "SelectedNumber:  $SelectedNumber\n"; //////I am
 >> thinking this
 >> is where I should put the Array??/////
 >
 > $mailBody .= "SelectedNumbers:\n";
 > $mailBody .= implode("\n", $InterestedNumbers);
 >
 >>  $mailBody .= "Comments:  $comments\n\n\n";
 >
 > --
 > Like Music?
 > http://l-i-e.com/artists.htm
 >
 >
 >
 [Back to original message] |