[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[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!

7.8

How to remove the border line beside the form

Asked by alicca in PHP and Databases, Hypertext Markup Language (HTML), Cascading Style Sheets (CSS)

Tags: PHP, Html, Css, IE7, http://24x7affiliate.com

take a look at this site:
http://24x7affiliate.com/index.php?Act=affil_regi

can some one figure out how i can remove the line beside the form.. i use dreamweaver 8 pro to design.
i checked, there is no image adopted.. i paste my php coding here.. can some 1 figure it out? urgent please...

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx new_affi_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
<?
//Last Modified By DPT on May/28/05 to fix issues with HTML
 $Err            =$_GET['Err'];
 $Action      =$_GET['Action'];

 if ($Action=="affiliate")
    $aff="selected = 'selected' ";
 else
     $mer="selected = 'selected' ";
?>
<style type="text/css">
<!--
.style5 {FONT-WEIGHT: bold; COLOR: #009900
}
-->
</style>
<table width="775" height="689" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="13" bgcolor="#FFFFFF">&nbsp;</td>
    <td height="13" bgcolor="#0c80d6">&nbsp;</td>
    <td height="13" bgcolor="#FFFFFF">&nbsp;</td>
  </tr>
  <tr>
    <td width="15" height="92" bgcolor="#FFFFFF">&nbsp;</td>
    <td width="747" background="images/bg_blues.jpg">&nbsp;</td>
    <td width="13" bgcolor="#FFFFFF">&nbsp;</td>
  </tr>
  <tr>
    <td height="186" rowspan="2" bgcolor="#FFFFFF">&nbsp;</td>
    <td height="468" bgcolor="#FFFFFF"><span class="ltrtbrdr1">
      <? include_once "affil_regi.php"; ?>
    </span></td>
    <td height="186" rowspan="2" bgcolor="#FFFFFF">&nbsp;</td>
  </tr>
  <tr>
    <td height="93" bgcolor="#FFFFFF">&nbsp;</td>
  </tr>
</table>
<script language="javascript" type="text/javascript">
           function viewLink()
                {

                   url="forgotpass.php";
                   nw = open(url,'new','height=200,width=450,scrollbars=yes');
                   nw.focus();
                }
 </script>
xxxxxxxxxxxxxxxxxxxxx end of new_affi_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx



the file start with  new_affi_regi.php then include the two file below...

xxxxxxxxxxxxxxxxxxxxxxxxxx affil_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

<?php

#-------------------------------------------------------------------------------
# Affilaite Registration Page
# Payment Gateways supported Are
# Paypal, Authorize.net, StormPay, eGold, check by mail, wire Transfer, Neteller

# Pgmmr        : RR
# Date Created :   28-10-2004
# Date Modfd   :   29-10-2004
# Last Modified:   DPT on May/17/05 to add quotes to all value attributes on form
# Last Modified:   DPT on May/28/05 to fix issues with HTML tags
#-------------------------------------------------------------------------------


# geting all payments gateways supported
# and its associated parametrs
  $sql ="select * from partners_paymentgateway where pay_status like 'Active' and pay_name NOT LIKE 'WorldPay'";
  $ret =mysql_query($sql);

# getting back form variable

# Err mgs
    $msg                 = trim(stripslashes($_GET['msg']));
    $err                         = $_GET['err'];
# Personal Information
    $firstname           = stripslashes($_GET['firstname']);
    $lastname            = stripslashes($_GET['lastname']);
    $company             = stripslashes($_GET['company']);
    $url                 = stripslashes($_GET['url']);
    $address             = stripslashes($_GET['address']);
    $city                = stripslashes($_GET['city']);
    $category            = stripslashes($_GET['category']);
    $phone               = stripslashes($_GET['phone']);
    $fax                 = stripslashes($_GET['fax']);
    $mailid              = stripslashes($_GET['mailid']);
    $country             = stripslashes($_GET['country']);
    $address             = stripslashes($_GET['address']);
    $minimumcheck        = stripslashes($_GET['minmumcheck']);
    $affiliateid         = stripslashes($_GET['affiliateid']);
    $modofpay            = stripslashes($_GET['modofpay']);
         $taxIdtxt            = stripslashes(trim($_GET['taxIdtxt']));

  if($err=='2'){
     $paymodes            = explode("`~`",$_SESSION['PAYMODE']);


# paypal email
         $payapalemail             =   $paymodes[0];

# storm pay email
    $stormmail       = $paymodes[1];

# egold information
    $payeename        = $paymodes[2];
    $acno             = $paymodes[3];

# checkout information
    $productid        = $paymodes[4];

    $checkoutid       = $paymodes[5];

# authorize.net information.
    $version          = $paymodes[6];

    $delimdata        = $paymodes[7];

    $relayresponse    = $paymodes[8];

    $login            = $paymodes[9];

    $trankey          = $paymodes[10];

    $cctype           = $paymodes[11];


#-------------------------------------------------------------------------
# Aditional informations added
#-------------------------------------------------------------------------
    $zipcode            = $paymodes[12];

    $state              = $paymodes[13];


    $timezone             = $paymodes[14];



# Neteller account
    $neteller_email       = $paymodes[15];

    $neteller_accnt             = $paymodes[16];


# check by Mail
    $checkpayee           = $paymodes[17];

    $checkcurr            = $paymodes[18];



# Wire Transfer
    $wire_AccountName   = $paymodes[19];

    $wire_AccountNumber = $paymodes[20];

    $wire_BankName      = $paymodes[21];

    $wire_BankAddress   = $paymodes[22];

    $wire_BankCity      = $paymodes[23];

    $wire_BankState     = $paymodes[24];

    $wire_BankZip       = $paymodes[25];

    $wire_BankCountry   = $paymodes[26];

    $wire_BankAddressNumber= $paymodes[27];

    $wire_Nominate      = $paymodes[28];


      if($relayresponse=="True")          $relayresponseselected1 = "selected = 'selected'";
      else                                $relayresponseselected2 = "selected = 'selected'";
      if($delimdata=="True")              $delimdataselected1     = "selected = 'selected'";
      else                                $delimdataselected2     = "selected = 'selected'";
      if($cctype=="AUTH_CAPTURE")         $cctypesel1             = "selected = 'selected'" ;
      if($cctype=="AUTH_ONLY")            $cctypesel2             = "selected = 'selected'" ;
      if($cctype=="CAPTURE_ONLY")         $cctypesel3             = "selected = 'selected'" ;
      if($cctype=="CREDIT")               $cctypesel4             = "selected = 'selected'" ;
      if($cctype=="VOID")                 $cctypesel5             = "selected = 'selected'" ;
      if($cctype=="PRIOR_AUTH_CAPTURE")   $cctypesel6             = "selected = 'selected'" ;


   }
    $bankno               = stripslashes($_GET['bankno']);
    $bankname             = stripslashes($_GET['bankname']);
    $bankemail            = stripslashes($_GET['bankemail']);
    $bankaccount          = stripslashes($_GET['bankaccount']);
    $payableto            = stripslashes($_GET['payableto']);


#-------------------------------------------------------------------------
# Aditional informations added
#-------------------------------------------------------------------------
        $zipcode        = trim(stripslashes($_GET['zipcode']));
        $state          = trim(stripslashes($_GET['state']));
        $timezone       = trim(stripslashes($_GET['timezone']));
        $j=-12;
        for($i=0 ;$i<=24 ;$i++)
                {
                 if($timezone==$j) $sel[$i] ="selected = 'selected'" ;
                 else  $sel[$i] =" " ;
                 $j++;
       }
#-------------------------------------------------------------------------
# Aditional informations added Ends Here
#-------------------------------------------------------------------------

?>

<form method="post" name="reg" action="affil_reg_validate.php?mode=insert" >
<table width="620"  border="0" align="center" cellpadding="0" cellspacing="0">
             <tr>

                  <td  class="textred" colspan="3">* <?=$reqd?></td>

            </tr>
            <tr>

                  <td align="center" class="textred" colspan="3"><?=$_GET['msg']?></td>

            </tr>
              <tr>

                  <td align="center" class="textred" colspan="3">&nbsp;</td>

            </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_firstname?></b></td>
                <td>

                        <input type="text" name="firstnametxt" size="20" value="<?=$firstname?>" />

                     </td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_Last?></b></td>
                <td><input type="text" name="lastnametxt" size="20" value="<?=$lastname?>"/></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_EmailId?></b></td>
                <td><input type="text" name="emailidtxt" size="20" value="<?=$mailid?>" /></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><span >
                      <b><?=$lang_Phone?></b>
                </span></td>
                <td><input type="text" name="phonetxt" size="20" value="<?=$phone?>"/> <span >
                </span></td>
               </tr>
          <tr>
                <td>&nbsp;</td>
                <td><b><?=$lang_Fax?></b></td>
                <td><input type="text" name="faxtxt" size="20" value="<?=$fax?>"/></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_Company?></b></td>
                <td><input type="text" name="companytxt" size="20" value="<?=$company?>"/></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_URL?></b></td>
                <td><input type="text" name="urltxt" size="20" value="<?=$url?>" /></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_Address?></b></td>
                <td><textarea rows="2" name="addresstxt" cols="20"><?=$address ?></textarea></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_City?></b></td>
                <td><input type="text" name="citytxt" size="20" value="<?=$city?>" /></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_state?></b></td>
                <td><input type="text" name="state" size="20" value="<?=$state?>" /></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_Country?></b></td>
                <td><select size="1" name="countrylst">
                  <option value="nill" >
                  <?=$lang_SelectaCountry?>
                  </option>
                  <?php
        # getting all country from the table
        $sql    = "select * from partners_country";
        $result = mysql_query($sql);
        while($row=mysql_fetch_object($result)){
           if($country==$row->country_name){
           ?>
                  <option value="<?=$row->country_name?>" selected='selected' >
                  <?=$row->country_name?>
                  </option>
                  <?php
           }else{
           ?>
                  <option value="<?=$row->country_name?>" >
                  <?=$row->country_name?>
                  </option>
                  <?php
             }
        }
       ?>
                  </select></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td width="20%"><b><?=$lang_zip?></b></td>
                <td><input type="text" name="zipcode" size="20" value="<?=$zipcode?>" /></td>
               </tr>
        <tr>
                <td align="right" class="textred"></td>
                <td><b><?=$lang_taxId?></b></td>
                <td><input type="text" name="taxIdtxt" size="20" value="<?=$taxIdtxt?>" /></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_timezone?></b></td>
                <td><select name="timezone">
                  <option <?=$sel[0]?>        value="-12">Newzealand Time(-12)</option>
                  <option <?=$sel[1]?>      value="-11">Midway Isles, Samoa (-11)</option>
                  <option <?=$sel[2]?>      value="-10">Hawaii (-10)</option>
                  <option <?=$sel[3]?>      value="-9">AKST - Alaska Standard Time(-9)</option>
                  <option <?=$sel[4]?>      value="-8">PST - Pacific Standard Time(-8)</option>
                  <option <?=$sel[5]?>      value="-7">MST - Mountain Standard Time(-7)</option>
                  <option <?=$sel[6]?>      value="-6">CST - Central Standard Time(-6)</option>
                  <option <?=$sel[7]?>      value="-5">EST - Eastern Standard Time(-5)</option>
                  <option <?=$sel[8]?>      value="-4">SA West - Atlantic Time(-4)</option>
                  <option <?=$sel[9]?>      value="-3">SA East - East Brasil Time (-3)</option>
                  <option <?=$sel[10]?>      value="-2">Middle Atlantic (-2)</option>
                  <option <?=$sel[11]?>      value="-1">Island Time (-1)</option>
                  <option <?=$sel[12]?>      value="0">GMT - Greenwitch Meridian Time (0)</option>
                  <option <?=$sel[13]?>      value="1">CET - Central European Time (+1)</option>
                  <option <?=$sel[14]?>      value="2" >EET - East European Time (+2)</option>
                  <option <?=$sel[15]?>      value="3">Irak, Kuwait, Russia(+3)</option>
                  <option <?=$sel[16]?>      value="4">Mauritius, Kazachstan (+4)</option>
                  <option <?=$sel[17]?>      value="5">West Asia (+5)</option>
                  <option <?=$sel[18]?>      value="6">Central Asia (+6)</option>
                  <option <?=$sel[19]?>      value="7">Indo China Time (+7)</option>
                  <option <?=$sel[20]?>      value="8">Chinese Shore Time (+8)</option>
                  <option <?=$sel[21]?>      value="9">JST - Japan Standard Time (+9)</option>
                  <option <?=$sel[22]?>      value="10">AUS - Australian Time(+10)</option>
                  <option <?=$sel[23]?>      value="11">Central Pacifik (+11)</option>
                  <option <?=$sel[24]?>      value="12">Newzealand Time (12)</option>
                  </select></td>
                <td></td>
               </tr>
          <tr>
                <td align="right" class="textred">*</td>
                <td><b><?=$lang_Category?></b></td>
                <td><select size="1" name="categorylst">
                  <option selected='selected' value="nill">
                  <?=$lang_category?>
                  </option>
                  <?php
           # getting all categories available
             $sql    = "select * from partners_category";
             $result = mysql_query($sql);
             while($row=mysql_fetch_object($result)){
                if($category==$row->cat_name) {
                ?>
                  <option value=<?=$row->cat_name?> selected='selected' >
                  <?=$row->cat_name?>
                  </option>
                  <?php
                }else{
                ?>
                  <option value="<?=$row->cat_name?>" >
                  <?=$row->cat_name?>
                  </option>
                  <?php
                }
       }
         ?>
                  </select></td>
                <td></td>
               </tr>
          <tr>
                <td width="20%">&nbsp;</td>
                <td width="20%"><b><?=$lang_ParentID?></b></td>
                <td><select size="1" name="affiliateid">
          <option selected="selected" value="nill">
          <?=$parentselect?>
          </option>
          <?php
                    $sql    = "SELECT affiliate_id, affiliate_firstname, affiliate_lastname FROM `partners_affiliate`WHERE affiliate_status = 'approved' ";
                    $result = mysql_query($sql);
                     while($row=mysql_fetch_object($result)){
                         if($affiliateid==$row->affiliate_id){
                         ?>
                                        <option value="<?=$row->affiliate_id?>" selected='selected' >
                                        <?=ucwords(stripslashes($row->affiliate_firstname))?>  <?=ucwords(stripslashes($row->affiliate_lastname))?>
                                           </option>
                                  <?php
                         }else{
                         ?>
                                        <option value="<?=$row->affiliate_id?>" >
                                        <?=ucwords(stripslashes($row->affiliate_firstname))?>  <?=ucwords(stripslashes($row->affiliate_lastname))?>
                                        </option>
                                  <?php
                         }
                      }
                     ?>
          </select></td>
                <td></td>

               </tr>

         <tr>
            <td height="15" colspan="3" ><div align="center"><img src="images/visa.jpg" alt="Visa" width="48" height="48" /><img src="images/masterCard.jpg" alt="Mastercard" width="48" height="48" /><img src="images/paypal.jpg" alt="Paypal" width="48" height="48" /><img src="images/eCheck.jpg" alt="eCheck" width="48" height="48" /></div></td>
    </tr>
         <tr>
            <td height="5" colspan="3" ></td>
    </tr>
  </table>

<? include_once "reg_banking.php"; ?>

</form>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx end of affil_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxx reg_banking.php xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
 <?
 #------------------------------------------------------------------------------
 # opens terms file
 # reads all contents
 #------------------------------------------------------------------------------
  $filename                = "admin/terms.htm";
  $fp                      = fopen($filename,'r');
  $contents                = fread ($fp, filesize ($filename));
  fclose($fp);

 ?>

 <br/>
<table width="620"  border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF"  class="" id="" style="">
  <tr>
    <td height="10" bgcolor="#FFA200" align="center"><b>
        <?=$lang_PaymentGateway?>
        <select class="dropdown" name="modofpay" onchange="getpayment()">
          <?//checking for each records
               if(mysql_num_rows($ret)>0)
               {
                       while($row=mysql_fetch_object($ret))
                       {     if($modofpay==$row->pay_name) $sel="selected = 'selected'";
                             else                          $sel ="";
                             ?>
                               <option value="<?=$row->pay_name?>" <?=$sel?>><?=$row->pay_name?> </option>
                              <?
                       }
               }  ?>
        </select>
    </b> </td>
  </tr>

 <tr>
    <td><font color="#FF0000">* <?=$allreqd?></font>
    </td>
  </tr>
<tr>
<td id="td_id">

 </td>
 </tr>
</table>
 <p>&nbsp;</p>
 <table width="620" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
 <tr>
     <td height="20" bgcolor="#FFA200" align="center"><b><?=$lang_terms_condn?></b>    </td>
  </tr>
  <tr>
    <td height="19">&nbsp;    </td>
  </tr>
  <tr>
    <td height="19" align="center"><textarea name="termsCondn" cols="100" rows="20"><?=stripslashes($contents)?>
    </textarea></td>
  </tr>
  <tr>
    <td height="19">&nbsp;    </td>
  </tr>
   <tr>
    <td height="19" align="center"><input name="terms" type="checkbox" value="1"/> <?=$lang_terms?>    </td>
  </tr>
  <tr>
    <td height="19">&nbsp;    </td>
  </tr>
  <tr>
    <td height="19" align="center">
      <input type="submit" value="Register" name="B1" />    </td>
  </tr>
</table>

<div id="layer_2checkout"  style="position:absolute; visibility:hidden; width:615px; left:222px; top:741px; border:0px none #000000;">
<table width="90%" class="" align="center"><tr><td height='25' colspan='2' align='center'><?=$lang_2Checkout?></td></tr><tr><td height='25' width='50%' align='right'><?=$lang_checkoutid?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='checkoutid' size='20' value='<?=$checkoutid?>' /></td></tr><tr><td height='25' width='50%'><?=$lang_productid?></td><td height='25' width='50%'> <input type='text' name='productid' size='20' value='<?=$productid?>' /> </td></tr></table>
</div>
<div id="layer_paypal"  style="position:absolute; visibility:hidden; width:615px; left:224px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr><td height='25' colspan='2' align='center'><?=$lang_Paypal?></td></tr><tr><td height='25' width='50%' align='right'><?=$lang_payapalemail?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='paypalemail' size='20' value='<?=$paypalemail?>' />  </td>    </tr><tr> <td height='25' width='50%'>  </td><td height='25' width='50%'>  </td>  </tr> </table>
</div>
<div id="layer_stormpay"  style="position:absolute; visibility:hidden; width:615px; left:241px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_Stormpay?></td>    </tr><tr><td height='25' width='50%' align='right'><?=$lang_stormemail?>&nbsp;&nbsp;  </td> <td height='25' width='50%'> <input type='text' name='stormemail' size='20' value='<?=$stormmail?>' />  </td>    </tr><tr>  <td height='25' width='50%'>  </td>   <td height='25' width='50%'>  </td>  </tr></table>
</div>
<div id="layer_authorize"  style="position:absolute; visibility:hidden; width:615px; left:226px; top:739px; border: 0px none #000000;">
<table width="90%" class="tablewbdr" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_Authorize?></td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_version?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input name='version' type='text'  value ='<?=$version?>' size='20' />  </td>    </tr><tr><td height='25' width='50%' align='right'><?=$lang_delimdata?>&nbsp;&nbsp;</td><td height='25' width='50%'>  <select name='delimdata'><option value='True' <?=$delimdataselected1?>><?=$regbank_true?></option>     <option value='False' <?=$delimdataselected2?>><?=$regbank_false?></option> </select></td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_relayresponse?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <select name='relayresponse'> <option value='True'  <?=$relayresponseselected1?>><?=$regbank_true?></option><option value='False'  <?=$relayresponseselected2?>><?=$regbank_false?></option></select> </td></tr><tr><td height='25' width='50%' align='right'><?=$lang_login?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input name='login' type='text'  value ='<?=$login?>' size='20' />   </td>    </tr><tr> <td height='25' width='50%' align='right'><?=$lang_trankey?>&nbsp;&nbsp;</td> <td height='25' width='50%'> <input name='trankey' type='text'  value ='<?=$trankey?>' size='20' />  </td>    </tr><tr><td height='25' width='50%' align='right'><?=$lang_cctype?>&nbsp;&nbsp;</td> <td height='25' width='50%'> <select name='cctype' ><option value='AUTH_CAPTURE' <?=$cctypesel1?>><?=$regbank_authcap?></option>        <option value='AUTH_ONLY' <?=$cctypesel2?>><?=$regbank_authonly?></option>   <option value='CAPTURE_ONLY' <?=$cctypesel3?>><?=$regbank_caponly?></option>        <option value='CREDIT' <?=$cctypesel4?>><?=$regbank_credit?></option>         <option value='VOID' <?=$cctypesel5?>><?=$regbank_void?></option>        <option value='PRIOR_AUTH_CAPTURE' <?=$cctypesel6?>><?=$regbank_prior?></option>     </select>  </td>    </tr></table>
</div>
<div id="layer_egold"  style="position:absolute;  visibility:hidden; width:615px; left:227px; top:741px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_eGold?></td> </tr><tr> <td height='25' width='50%' align='right'><?=$lang_acno?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='acno' size='20' value='<?=$acno?>' />  </td>    </tr> <tr> <td height='25' width='50%' align='right'><?=$lang_payeename?>&nbsp;&nbsp;</td>   <td height='25' width='50%'><input type='text' name='payeename' size='20' value='<?=$payeename?>' />  </td>      </tr> </table>
</div>
<div id="layer_checkbymail"  style="position:absolute; visibility:hidden; width:615px; left:244px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_check_caption?></td></tr><tr><td height='25' width='50%' align='right'><?=$lang_check_payee?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='checkpayee' size='20' value='<?=$checkpayee?>' />  </td></tr><tr><td height='25' width='50%' align='right'><?=$lang_check_curr?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='checkcurr' size='20' value='<?=$checkcurr?>'  />  </td> </tr><tr><td height='25' width='50%'>  </td><td height='25' width='50%'>  </td> </tr></table>
</div>
<div id="layer_neteller"  style="position:absolute; visibility:hidden; width:615px; left:243px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_neteller_caption?></td></tr><tr><td height='25' width='50%' align='right'><?=$lang_neteller_email?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='neteller_email' size='20' value='<?=$neteller_email?>' />  </td></tr><tr><td height='25' width='50%' align='right'><?=$lang_neteller_accnt?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='neteller_accnt' size='20' value='<?=$neteller_accnt?>'  />  </td> </tr><tr><td height='25' width='50%'>  </td><td height='25' width='50%'>  </td> </tr></table>
</div>
<div id="layer_wiretransfer"  style="position:absolute; visibility:hidden; width:615px; left:217px; top:683px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_wire_caption?></td></tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_AccountName?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='wire_AccountName' size='20' value='<?=$wire_AccountName?>' />  </td></tr> <tr><td height='25' width='50%' align='right'><?=$lang_wire_AccountNumber?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_AccountNumber' size='20' value='<?=$wire_AccountNumber?>'  />  </td> </tr> <tr><td height='25' width='50%' align='right'><?=$lang_wire_BankName?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_BankName' size='20' value='<?=$wire_BankName?>'  />  </td> </tr><tr><td height='25' width='50%' align='right' valign='top'><?=$lang_wire_BankAddress?>&nbsp;&nbsp;</td><td height='25' width='50%'> <textarea name='wire_BankAddress' rows='5' cols='27'><?=$wire_BankAddress?></textarea>  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_BankCity?>&nbsp;&nbsp;</td><td height='25' width='50%'> <input type='text' name='wire_BankCity' size='20' value='<?=$wire_BankCity?>'  />  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_BankState?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_BankState' size='20' value='<?=$wire_BankState?>'  />  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_BankZip?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_BankZip' size='20' value='<?=$wire_BankZip?>'  />  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_BankCountry?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_BankCountry' size='20' value='<?=$wire_BankCountry?>'  />  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_BankAddressNumber?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_BankAddressNumber' size='20' value='<?=$wire_BankAddressNumber?>'  />  </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wire_Nominate?>&nbsp;&nbsp;</td>        <td height='25' width='50%'> <input type='text' name='wire_Nominate' size='20' value='<?=$wire_Nominate?>'  />  </td> </tr><tr><td height='25' width='50%'></td><td height='25' width='50%'>  </td> </tr>            </table>
</div>

<script language="javascript" type="text/javascript">
 function  getpayment() {
    if(document.reg.modofpay.value=="2checkout")
      {
                              document.getElementById("td_id").height = 190;
                              if(IE) document.getElementById("layer_2checkout").style.posTop = 725;
                              document.getElementById("layer_2checkout").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Paypal")
      {
                              document.getElementById("td_id").height = 75;
                              if(IE) document.getElementById("layer_paypal").style.posTop = 725;
                    document.getElementById("layer_paypal").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Stormpay")
      {
                              document.getElementById("td_id").height = 75;
                              if(IE) document.getElementById("layer_stormpay").style.posTop = 725;
                    document.getElementById("layer_stormpay").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Authorize.net")
      {
                              document.getElementById("td_id").height = 205;
                              if(IE) document.getElementById("layer_authorize").style.posTop = 725;
                    document.getElementById("layer_authorize").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="E-Gold")
      {
                              document.getElementById("td_id").height = 95;
                              if(IE) document.getElementById("layer_egold").style.posTop = 725;
                    document.getElementById("layer_egold").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="CheckByMail")
      {
                              document.getElementById("td_id").height = 95;
                              if(IE) document.getElementById("layer_checkbymail").style.posTop = 725;
                    document.getElementById("layer_checkbymail").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="NETeller")
      {
                              document.getElementById("td_id").height = 195;
                              if(IE) document.getElementById("layer_neteller").style.posTop = 725;
                    document.getElementById("layer_neteller").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="WireTransfer")
      {
                              document.getElementById("td_id").height = 360;
                              if(IE) document.getElementById("layer_wiretransfer").style.posTop = 725;
                    document.getElementById("layer_wiretransfer").style.visibility = 'visible';

      }
      hide_other_layers(document.reg.modofpay.value);
}

function hide_other_layers(value){
            if(value!="2checkout")             document.getElementById("layer_2checkout").style.visibility = 'hidden';
            if(value!="Paypal")             document.getElementById("layer_paypal").style.visibility = 'hidden';
            if(value!="Stormpay")             document.getElementById("layer_stormpay").style.visibility = 'hidden';
            if(value!="Authorize.net")       document.getElementById("layer_authorize").style.visibility = 'hidden';
            if(value!="E-Gold")             document.getElementById("layer_egold").style.visibility = 'hidden';
            if(value!="CheckByMail")       document.getElementById("layer_checkbymail").style.visibility = 'hidden';
            if(value!="NETeller")             document.getElementById("layer_neteller").style.visibility = 'hidden';
            if(value!="WireTransfer")       document.getElementById("layer_wiretransfer").style.visibility = 'hidden';
}
</script>
<script language="javascript" type="text/javascript">
      var ua      =      navigator.userAgent.toLowerCase(); //alert(ua);
      var NN4      =      IE4=OP6=KO3=false, OP=!!self.opera;
      var IE      =      ua.indexOf("msie")!=-1&&!OP&&ua.indexOf("webtv")==-1;
         var MAC  = (ua.indexOf("firefox")) != -1;
    var OP = (ua.indexOf("opera")) != -1;
    if(document.reg.modofpay.value=="2checkout")
      {
                              document.getElementById("td_id").height = 190;
                              if(IE) document.getElementById("layer_2checkout").style.posTop = 725;
                              document.getElementById("layer_2checkout").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Paypal")
      {
                              document.getElementById("td_id").height = 75;
                              if(IE) document.getElementById("layer_paypal").style.posTop = 725;
                    document.getElementById("layer_paypal").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Stormpay")
      {
                              document.getElementById("td_id").height = 75;
                              if(IE) document.getElementById("layer_stormpay").style.posTop = 725;
                    document.getElementById("layer_stormpay").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="Authorize.net")
      {
                              document.getElementById("td_id").height = 205;
                              if(IE) document.getElementById("layer_authorize").style.posTop = 725;
                    document.getElementById("layer_authorize").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="E-Gold")
      {
                              document.getElementById("td_id").height = 95;
                              if(IE) document.getElementById("layer_egold").style.posTop = 725;
                    document.getElementById("layer_egold").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="CheckByMail")
      {
                              document.getElementById("td_id").height = 95;
                              if(IE) document.getElementById("layer_checkbymail").style.posTop = 725;
                    document.getElementById("layer_checkbymail").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="NETeller")
      {
                              document.getElementById("td_id").height = 195;
                              if(IE) document.getElementById("layer_neteller").style.posTop = 725;
                    document.getElementById("layer_neteller").style.visibility = 'visible';
      }
    if(document.reg.modofpay.value=="WireTransfer")
      {
                              document.getElementById("td_id").height = 360;
                              if(IE) document.getElementById("layer_wiretransfer").style.posTop = 725;
                    document.getElementById("layer_wiretransfer").style.visibility = 'visible';
      }
</script>
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

can some one tell me to remove the line?? plz.. i need help urgently...
[+][-]08/26/07 10:03 PM, ID: 19773771Expert Comment

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.

 
[+][-]08/26/07 10:08 PM, ID: 19773779Author Comment

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.

 
[+][-]08/26/07 10:13 PM, ID: 19773796Expert Comment

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.

 
[+][-]08/26/07 10:50 PM, ID: 19773886Author Comment

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.

 
[+][-]08/26/07 11:43 PM, ID: 19773973Accepted Solution

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

Zones: PHP and Databases, Hypertext Markup Language (HTML), Cascading Style Sheets (CSS)
Tags: PHP, Html, Css, IE7, http://24x7affiliate.com
Sign Up Now!
Solution Provided By: SheharyaarSaahil
Participating Experts: 2
Solution Grade: A
 
[+][-]08/27/07 12:18 AM, ID: 19774073Author Comment

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.

 
[+][-]08/27/07 12:19 AM, ID: 19774075Expert Comment

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.

 
 
Loading Advertisement...
20091021-EE-VQP-81 / EE_QW_2_20070628