Advertisement

04.14.2003 at 05:37AM PDT, ID: 20584406
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

5.0

Php Worldpay Futurepay Urgent Help Required

Asked by sohaib69 in PHP Scripting Language

Tags: ,

Hello Expert,

I have one php script which has like a subscription system like 1 month, 2 months , 3 months, Quarterly and 1 year

The subscription system is Standard And Premium.

What I wanted to know Is I am using WORLDPAY FUTUREPAY . I have everything the WORLDPAY is working fine but the thing
is the subscribtion are 1month,2month,3months,Quarterly & 1Year with Future pay we can charge our customer
who ever select either 1month,2month,3months,Quarterly & 1Year Subscription.

So my question is How I am going to do that.

There are two main scripts which is register.php and other one is regster_pay.php


I will appreciate if you please kindly help me so that I can easily charge my customer with the help of
WORLDPAY FUTUREPAY.

Please look below for 2 Scripts register.php and register_pay.php

=-=-=-=-=-=-=-=-=--=-=-=-=--=-=-=-=-=--
=-=-=-=-=-=-=-=-=--=-=-=-=--=-=-=-=-=--



Register.php Statrs Here ------
<?php
include ("config_file.php");
$form_action_file="register.php";
?>
<br>
<?
if ($HTTP_GET_VARS['login']=="buyers") {

 if ($buyers_register_button)
  {
      
      if(empty($HTTP_POST_VARS['username']) || strlen($HTTP_POST_VARS['username'])<ENTRY_USERNAME_MIN_LENGTH )
         {
       $username_error="yes";
       }
        else
           {
           $username_error="no";
           }
      
       if(!empty($HTTP_POST_VARS['username']))
       {
        $username_query=mysql_query("select * from buyers where username = '".$HTTP_POST_VARS['username']."'");
      $username_number=@mysql_num_rows($username_query);
      if ($username_number!=0)
        {
       $username_result=mysql_fetch_array($username_query);
         if ($username_result['username']==$HTTP_POST_VARS['username'])
            {
            $already_username_error="yes";
            }
            else
               {
               $already_username_error="no";
               }
        }
         else
            {
            $already_username_error="no";
            }
      
        }       


      if (empty($HTTP_POST_VARS['password']) || (strlen($HTTP_POST_VARS['password'])<ENTRY_PASSWORD_MIN_LENGTH) || (verify($HTTP_POST_VARS['password'],"string_int")==1))
        {
        $password_error="yes";
        }
           else
           {
           $password_error="no";
           }

    if (($HTTP_POST_VARS['password']!=$HTTP_POST_VARS['repassword']) || (strlen($HTTP_POST_VARS['repassword'])<ENTRY_PASSWORD_MIN_LENGTH) || (verify($HTTP_POST_VARS['repassword'],"string_int")==1))
        {
        $repassword_error="yes";
        }
           else
           {
           $repassword_error="no";
           }
      
      if (empty($HTTP_POST_VARS['email']) || (strlen($HTTP_POST_VARS['email'])<ENTRY_EMAIL_MIN_LENGTH) || (!eregi("(@)(.*)",$HTTP_POST_VARS['email'],$regs)) || (!eregi("([.])(.*)",$HTTP_POST_VARS['email'],$regs)) || (verify($HTTP_POST_VARS['email'],"string_int_email")==1))
        {
        $email_error="yes";
        }
           else
           {
           $email_error="no";
           }

      if (!empty($HTTP_POST_VARS['email'])) {
      
        $email_query=mysql_query("select * from buyers where email like '".$HTTP_POST_VARS['email']."'");
     
      $email_number=@mysql_num_rows($email_query);
      if ($email_number!=0)
        {
       $email_result=mysql_fetch_array($email_query);
         if ($email_result['email']==$HTTP_POST_VARS['email'])
            {
            $already_email_error="yes";
            }
            else
               {
               $already_email_error="no";
               }
        }
         else
            {
            $already_email_error="no";
            }
      }

      if(empty($HTTP_POST_VARS['first_name']))
       {
       $first_name_error="yes";
       }
        else
           {
           $first_name_error="no";
           }

     if(empty($HTTP_POST_VARS['last_name']))
       {
       $last_name_error="yes";
       }
        else
           {
           $last_name_error="no";
           }

      if(empty($HTTP_POST_VARS['address']))
       {
       $address_error="yes";
       }
        else
           {
           $address_error="no";
           }

      if(empty($HTTP_POST_VARS['city']))
       {
       $city_error="yes";
       }
        else
           {
           $city_error="no";
           }
      
      if(empty($HTTP_POST_VARS['zip_code']))
       {
       $zip_code_error="yes";
       }
        else
           {
           $zip_code_error="no";
           }

      if(empty($HTTP_POST_VARS['phone']))
       {
       $phone_error="yes";
       }
        else
           {
           $phone_error="no";
           }
      
      if ($username_error=="yes" || $already_username_error=="yes" || $password_error=="yes" || $repassword_error=="yes" || $email_error=="yes" || $already_email_error=="yes" || $first_name_error=="yes" || $last_name_error=="yes" || $address_error=="yes" || $city_error=="yes" || $zip_code_error=="yes" || $phone_error=="yes") {
      
            include("forms/buyers_register_form.php");
      }
      else {
        
         $insert_buyer = bx_db_query("insert into $bx_db_table_buyers values('','".$HTTP_POST_VARS['username']."','".$HTTP_POST_VARS['password']."','".$HTTP_POST_VARS['email']."','".$HTTP_POST_VARS['first_name']."','".$HTTP_POST_VARS['last_name']."','".$HTTP_POST_VARS['address']."','".$HTTP_POST_VARS['address2']."','".$HTTP_POST_VARS['city']."','".$HTTP_POST_VARS['state']."','".$HTTP_POST_VARS['zip_code']."','".$HTTP_POST_VARS['phone']."','".$HTTP_POST_VARS['country']."','".$HTTP_POST_VARS['currency']."','$date_time', 'active')");
         $user_id=mysql_insert_id();
         bx_session_register("user_id");
         $user=$HTTP_POST_VARS['username'];
         bx_session_register("user");
         $type="buyers";
         bx_session_register("type");
        
        ?>
        <br>
        <table border="0" cellpadding="4" cellspacing="0" align="center">
               <tr>
                     <td class="text1">
            <b>Congratulations!</b><br><br> You are now registered to buy services.<br>  
            <font class="bigtext"><?echo $user;?></font> , look at <b>  What's next</b> to see how to get started.<br><br>  
            What's next:<br><br>
            ? Create your buyer <a href="profile.php" class="bigtext"> Profile</a><br>
        ? <a href="postjob.php" class="bigtext">Post a Project</a>
                  </td>
               </tr>
       </table>
       <br>
        <?
      }
      
  }
  else {
     include("forms/buyers_register_form.php");
  }

}



if ($HTTP_GET_VARS['login']=="sellers") {


 if ($sellers_register_button)
  {
      
      if(empty($HTTP_POST_VARS['username']) || strlen($HTTP_POST_VARS['username'])<ENTRY_USERNAME_MIN_LENGTH )
       {
       $username_error="yes";
       }
        else
           {
           $username_error="no";
           }
      
       if(!empty($HTTP_POST_VARS['username']))
       {
        $username_query=mysql_query("select * from $bx_db_table_sellers where username = '".$HTTP_POST_VARS['username']."'");
      $username_number=@mysql_num_rows($username_query);
      if ($username_number!=0)
        {
       $username_result=mysql_fetch_array($username_query);
         if ($username_result['username']==$HTTP_POST_VARS['username'])
            {
            $already_username_error="yes";
            }
            else
               {
               $already_username_error="no";
               }
        }
         else
            {
            $already_username_error="no";
            }
      
        }       

      if (empty($HTTP_POST_VARS['password']) || (strlen($HTTP_POST_VARS['password'])<ENTRY_PASSWORD_MIN_LENGTH) || (verify($HTTP_POST_VARS['password'],"string_int")==1))
        {
        $password_error="yes";
        }
           else
           {
           $password_error="no";
           }

    if (($HTTP_POST_VARS['password']!=$HTTP_POST_VARS['repassword']) || (strlen($HTTP_POST_VARS['repassword'])<ENTRY_PASSWORD_MIN_LENGTH) || (verify($HTTP_POST_VARS['repassword'],"string_int")==1))
        {
        $repassword_error="yes";
        }
           else
           {
           $repassword_error="no";
           }
      
      if (empty($HTTP_POST_VARS['email']) || (strlen($HTTP_POST_VARS['email'])<ENTRY_EMAIL_MIN_LENGTH) || (!eregi("(@)(.*)",$HTTP_POST_VARS['email'],$regs)) || (!eregi("([.])(.*)",$HTTP_POST_VARS['email'],$regs)) || (verify($HTTP_POST_VARS['email'],"string_int_email")==1))
        {
        $email_error="yes";
        }
           else
           {
           $email_error="no";
           }

      if (!empty($HTTP_POST_VARS['email'])) {
      
        $email_query=mysql_query("select * from $bx_db_table_sellers where email like '".$HTTP_POST_VARS['email']."'");
     
      $email_number=@mysql_num_rows($email_query);
      if ($email_number!=0)
        {
       $email_result=mysql_fetch_array($email_query);
         if ($email_result['email']==$HTTP_POST_VARS['email'])
            {
            $already_email_error="yes";
            }
            else
               {
               $already_email_error="no";
               }
        }
         else
            {
            $already_email_error="no";
            }
      }

      if(empty($HTTP_POST_VARS['first_name']))
       {
       $first_name_error="yes";
       }
        else
           {
           $first_name_error="no";
           }

     if(empty($HTTP_POST_VARS['last_name']))
       {
       $last_name_error="yes";
       }
        else
           {
           $last_name_error="no";
           }

      if(empty($HTTP_POST_VARS['address']))
       {
       $address_error="yes";
       }
        else
           {
           $address_error="no";
           }

      if(empty($HTTP_POST_VARS['city']))
       {
       $city_error="yes";
       }
        else
           {
           $city_error="no";
           }
      
      if(empty($HTTP_POST_VARS['zip_code']))
       {
       $zip_code_error="yes";
       }
        else
           {
           $zip_code_error="no";
           }

      if(empty($HTTP_POST_VARS['phone']))
       {
       $phone_error="yes";
       }
        else
           {
           $phone_error="no";
           }
/*
      
      if($HTTP_POST_VARS['subcategory_id']==0)
       {
       $subcategory_error="yes";
       }
        else
           {
           $subcategory_error="no";
           }
*/      
      
      if ($username_error=="yes" || $already_username_error=="yes" || $password_error=="yes" || $repassword_error=="yes" || $email_error=="yes" || $already_email_error=="yes" || $first_name_error=="yes" || $last_name_error=="yes" || $address_error=="yes" || $city_error=="yes" || $zip_code_error=="yes" || $phone_error=="yes" || $subcategory_error=="yes") {
      
            include("forms/sellers_register_form.php");
      }
      else {
        
         /*$insert_buyer = bx_db_query("insert into $bx_db_table_sellers values('','".$HTTP_POST_VARS['username']."','".$HTTP_POST_VARS['password']."','".$HTTP_POST_VARS['email']."','".$HTTP_POST_VARS['first_name']."','".$HTTP_POST_VARS['last_name']."','".$HTTP_POST_VARS['address']."','".$HTTP_POST_VARS['address2']."','".$HTTP_POST_VARS['city']."','".$HTTP_POST_VARS['state']."','".$HTTP_POST_VARS['zip_code']."','".$HTTP_POST_VARS['phone']."','".$HTTP_POST_VARS['country']."','$date_time','$HTTP_POST_VARS[subcategory_id]', 'active')");
         $user_id=mysql_insert_id();
         bx_session_register("user_id");
         $user=$HTTP_POST_VARS['username'];
         bx_session_register("user");
         $type="sellers";
         bx_session_register("type");
         */
            
            
            if ($HTTP_POST_VARS['option']=="premium")
            {
                  /*$ins = bx_db_query("insert into $bx_db_table_sellers values('','".$HTTP_POST_VARS['username']."','".$HTTP_POST_VARS['password']."','".$HTTP_POST_VARS['email']."','".$HTTP_POST_VARS['first_name']."','".$HTTP_POST_VARS['last_name']."','".$HTTP_POST_VARS['address']."','".$HTTP_POST_VARS['address2']."','".$HTTP_POST_VARS['city']."','".$HTTP_POST_VARS['state']."','".$HTTP_POST_VARS['zip_code']."','".$HTTP_POST_VARS['phone']."','".$HTTP_POST_VARS['country']."',NOW(),'premium','active','no')");
                  $insert_id=mysql_insert_id();
                  SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
                  */
                  include(DIR_FORMS."/sellers_register_premium_form.php");
            }
            elseif($HTTP_POST_VARS['option']=="standard")
            {
                  include(DIR_FORMS."/sellers_register_standard_form.php");
            }

      }
      
  }
  else
  {
     include("forms/sellers_register_form.php");
  }

}

if ($HTTP_POST_VARS['add_premium_seller_button'] && $HTTP_POST_VARS['q']=="1")
{
      $M=0;
      $N=0;
      for ($i=1;$i<sizeof($HTTP_POST_VARS['category_id'])+1;$i++)
      {      
            if ($HTTP_POST_VARS['category_price'.$i]!="none")
            {      
                  $N=$N+$i;
            }
            else
            {
                $M=$M+$i;
            }
      }
      
      if ($N==1)
      {
            //verify if already exist this member
            $sel = bx_db_query("select username, password, email from $bx_db_table_sellers where username='".$HTTP_POST_VARS['username']."' and password='".$HTTP_POST_VARS['password']."' and email='".$HTTP_POST_VARS['email']."'");
            SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
            if(bx_db_num_rows($sel)==0)
            {
                  $ins = bx_db_query("insert into $bx_db_table_sellers values('','".$HTTP_POST_VARS['username']."','".$HTTP_POST_VARS['password']."','".$HTTP_POST_VARS['email']."','".$HTTP_POST_VARS['first_name']."','".$HTTP_POST_VARS['last_name']."','".$HTTP_POST_VARS['address']."','".$HTTP_POST_VARS['address2']."','".$HTTP_POST_VARS['city']."','".$HTTP_POST_VARS['state']."','".$HTTP_POST_VARS['zip_code']."','".$HTTP_POST_VARS['phone']."','".$HTTP_POST_VARS['country']."',NOW(),'premium','active','no')");
                  $insert_id=mysql_insert_id();
                  SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));            
            }
            else
            {
                refresh(HTTP_SERVER);
                  exit();
            }
            
   
      }
      
      $res=0;

      for ($i=1;$i<=sizeof($HTTP_POST_VARS['category_id']);$i++)
      {      
            
            if ($HTTP_POST_VARS['category_price'.$i]!="none")
            {
            $sel = bx_db_query("select * from $bx_db_table_project_category where category_id='".$HTTP_POST_VARS['category_id'][$i-1]."'");
            SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
                  if(bx_db_num_rows($sel)!=0)
                  {      
                        $result=bx_db_fetch_array($sel);
                        if ($HTTP_POST_VARS['category_price'.$i]=="3")
                        {
                            $price=$result['annually_subscribe_price'];
                        }
                        elseif($HTTP_POST_VARS['category_price'.$i]=="2")
                        {
                            $price=$result['quarterly_subscribe_price'];
                        }
                        elseif($HTTP_POST_VARS['category_price'.$i]=="1")
                        {
                            $price=$result['monthly_subscribe_price'];
                        }
                        else{}
                  }
                  $ins_premium_seller = bx_db_query("insert into $bx_db_table_sellers_premium values('','".$insert_id."','".$HTTP_POST_VARS['category_id'][$i-1]."','".$HTTP_POST_VARS['category_price'.$i]."','$price', NOW(),'')");
                  //echo("insert into $bx_db_table_sellers_premium values('','".$insert_id."','".$HTTP_POST_VARS['category_id'][$i-1]."','".$HTTP_POST_VARS['category_price'.$i]."','$price', NOW(),'')");
                  SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
                  $total+=$price;
            }
      }
      $res=$total;
      if ($res==0.00)
      {
            echo "<br><br><center><font color=\"".ERROR_TEXT_COLOR."\" class=\"text1\">Please Select a Category!</font></center><br><br>";
      }
      else
      {
                        
            //$insert_id=mysql_insert_id();
                  $user_id=$insert_id;
                  bx_session_register("user_id");
                  $user=$HTTP_POST_VARS['username'];
                  bx_session_register("user");
                  $type="sellers";
                  bx_session_register("type");            

        refresh(HTTP_SERVER."/register_pay.php?seller=premium");
      }
            
}

if ($HTTP_POST_VARS['calculate_button'])
{      
      for ($i=1;$i<sizeof($HTTP_POST_VARS['category_id'])+1;$i++)
    {
            
            if ($HTTP_POST_VARS['category_price'.$i]!="none")
            {
                  $sel = bx_db_query("select * from $bx_db_table_project_category where category_id='".$HTTP_POST_VARS['category_id'][$i-1]."'");
                  SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
                  if(bx_db_num_rows($sel)!=0)
                  {      
                        $result=bx_db_fetch_array($sel);
                        if ($HTTP_POST_VARS['category_price'.$i]=="3")
                        {
                            $price=$result['annually_subscribe_price'];
                        }
                        elseif($HTTP_POST_VARS['category_price'.$i]=="2")
                        {
                            $price=$result['quarterly_subscribe_price'];
                        }
                        elseif($HTTP_POST_VARS['category_price'.$i]=="1")
                        {
                            $price=$result['monthly_subscribe_price'];
                        }
                        else{}
                  }
                  
                  $total+=$price;
                  
            }
      }
      //$total=$price;
        include(DIR_FORMS."/sellers_register_premium_form.php");
}

if ($HTTP_POST_VARS['add_standard_seller_button'])
{
    if ($HTTP_POST_VARS['standard_sub']=="1")
    {
        $standard_price=number_format($standard_subscription_price,2);
    }
      elseif ($HTTP_POST_VARS['standard_sub']=="2")
      {
          $standard_price=number_format((($standard_subscription_price*3)*$standard_quarterly_subscription_discount),2);
      }
      elseif ($HTTP_POST_VARS['standard_sub']=="3")
      {
          $standard_price=number_format((($standard_subscription_price*12)*$standard_annually_subscription_discount),2);
      }
      
      
      
      $ins = bx_db_query("insert into $bx_db_table_sellers values('','".$HTTP_POST_VARS['username']."','".$HTTP_POST_VARS['password']."','".$HTTP_POST_VARS['email']."','".$HTTP_POST_VARS['first_name']."','".$HTTP_POST_VARS['last_name']."','".$HTTP_POST_VARS['address']."','".$HTTP_POST_VARS['address2']."','".$HTTP_POST_VARS['city']."','".$HTTP_POST_VARS['state']."','".$HTTP_POST_VARS['zip_code']."','".$HTTP_POST_VARS['phone']."','".$HTTP_POST_VARS['country']."',NOW(),'standard','active','no')");
      SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
      
      //$insert_seller_id=mysql_insert_id();
      $user_id=mysql_insert_id();
      bx_session_register("user_id");
      $user=$HTTP_POST_VARS['username'];
      bx_session_register("user");
      $type="sellers";
      bx_session_register("type");

      $ins_standard_seller = bx_db_query("insert into $bx_db_table_sellers_standard values('','$user_id','".$HTTP_POST_VARS['standard_sub']."','$standard_price',NOW(),'')");
      SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
      
      
      refresh(HTTP_SERVER."/register_pay.php?seller=standard");
}

?>
<br>
<?
include (DIR_FORMS."footer.php");
?>


============== END

Register_Pay.php -------- Starts Here

<?
include("config_file.php");
?>
        <br>
        <table border="0" cellpadding="4" cellspacing="0" align="center">
               <tr>
                     <td class="text1">
                        <b>Congratulations!</b><br><br> You are now registered to sell services.<br>
                        <font class="bigtext"><?echo $user;?></font> , look at <b>  What's next</b> to see how to get started.<br><br>  
                              What's next:<br><br>
                        <!-- ? Create your seller <a href="profile.php" class="bigtext"> Profile</a><br> -->
                        <br>
                        
                  </td>
               </tr>
            <tr><td class="text1">
            <?
            $SQL = "select * from $bx_db_table_paydetails";
            $sel_details = bx_db_query($SQL);
            SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
            $res_details = bx_db_fetch_array($sel_details);
            $pay_email = $res_details['pay_email'];
          $company_name = $res_details['company_name'];
            $company_address = $res_details['company_address'];
            
            if ($HTTP_GET_VARS['seller']=="premium")
            {
                $table_name=$bx_db_table_sellers_premium;
            }
            elseif ($HTTP_GET_VARS['seller']=="standard")
            {
                $table_name=$bx_db_table_sellers_standard;
            }

            $sel = bx_db_query("select sum(subscribe_price) as subscribe_price_sum from $table_name where seller_user_id='$user_id'");
            SQL_CHECK(0,"SQL Error at ".__FILE__.":".(__LINE__-1));
            $sum_subscribe_price = bx_db_fetch_array($sel);
            $sum = $sum_subscribe_price['subscribe_price_sum'];
            
            ?>
            First You must pay through Worldpay<b>US$ <?=$sum?></b> for your account validation
            <br><br>

<FORM ACTION="https://select.worldpay.com/wcc/purchase" METHOD="POST" NAME="wp">

<input type=hidden name=instId value="00000">
<input type=hidden name=amount value="<?=$sum?>">
<input type=hidden name=cartId value="000000">
<input type=hidden name=currency value="USD">
<input type=hidden name=desc value="Project Bidder <?=$user?>' subscription <?=$sum?> ">
<input type=hidden name=testMode value="100">
<INPUT TYPE="HIDDEN" NAME="futurePayType" VALUE="regular">  
<INPUT TYPE="HIDDEN" NAME="option" VALUE="0">  
<INPUT TYPE="HIDDEN" NAME="startDelayMult" VALUE="1">  
<INPUT TYPE="HIDDEN" NAME="startDelayUnit" VALUE="4">  
<INPUT TYPE="HIDDEN" NAME="noOfPayments" VALUE="0">  
<INPUT TYPE="HIDDEN" NAME="intervalMult" VALUE="1">  
<INPUT TYPE="HIDDEN" NAME="intervalUnit" VALUE="4">  
<INPUT TYPE="HIDDEN" NAME="normalAmount" VALUE="<?=$sum?>">  
<input type="hidden" name="return" value="<?=HTTP_SERVER?>/register_return.php?id=<?echo $user_id?>&sum=<?=$sum?>">
<input type="hidden" name="undefined_quantity" value="0">
<input type="hidden" name="item_name" value="'<?=$user?>' user subscription">
<input type="hidden" name="cancel_return" value="<?=HTTP_SERVER?>/cancel.php">

            For the payment click on the Worldpay logo:  
        <input type="image" src="images/worldpay.gif"  name="submit" class="button" onClick="return confirm('You will be transferred to PayPal secure site to make payment! Do you want to proceed?');">
            </form>

            </td></tr>
       </table>
       <br>
<?
include(DIR_FORMS."footer.php");
?>

=============== EndStart Free Trial
[+][-]04.14.2003 at 05:51AM PDT, ID: 8326247

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 05:54AM PDT, ID: 8326273

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 06:25AM PDT, ID: 8326489

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 09:43AM PDT, ID: 8327856

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 12:09PM PDT, ID: 8328684

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 12:27PM PDT, ID: 8328783

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 12:30PM PDT, ID: 8328807

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 01:55PM PDT, ID: 8329304

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.14.2003 at 02:04PM PDT, ID: 8329375

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]04.15.2003 at 10:24AM PDT, ID: 8335235

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.15.2003 at 10:29AM PDT, ID: 8335269

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.15.2003 at 11:05AM PDT, ID: 8335513

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]04.15.2003 at 11:34AM PDT, ID: 8335691

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.05.2003 at 01:07PM PDT, ID: 8861553

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: PHP Scripting Language
Tags: worldpay, futurepay
Sign Up Now!
Solution Provided By: SpideyMod
Participating Experts: 3
Solution Grade: C
 
 
 
Loading Advertisement...
20081112-EE-VQP-44