How can ad PHP heading in Coding

Dear all,
I am created a PHP form working fine i want to put a heading between the coding
1) I want put a heading Know Your Interest: in between  Email Address:- and   2-Bed Room Apt.:-
    because when somebody fillup the form & submit we get a club of running matter, client want some seperation between this
we received the form like this, i want heading incorporate link this where i place that heading
<?php
          /* ========================= CODE WILL EXECUTE WHEN FORM WILL SUBMIT =====================*/
                    if($_GET["formFilledStatus"]=="t")
                              $name = $_GET['txtName'];
                              $addre = $_GET['add'];
                              $city          =          $_GET['city'];
                              $pincode          =          $_GET['pincode'];
                              $phone          =          $_GET['mob'];
                              $landline          =          $_GET['landline'];
                              $email          =          $_GET['txtEmail'];
                              $bedroomapt          =          $_GET['2bed'];
                              $bedroom23          =          $_GET['3bedroom'];
                              $fivebed          =          $_GET['5bedroom'];
                              $investment          =          $_GET['inv'];
                              $jammuhome          =          $_GET['2ndhome'];
                              $cappeal          =          $_GET['concept'];
                              $identify          =          $_GET['specify'];
                              $other          =          $_GET['simula-infra'];
                              $bankjk          =          $_GET['j&kbank'];
                              $otherbank          =          $_GET['hdfc'];
                              $ot          =          $_GET['anyotherbank'];
                              $to= "[email protected]";
                              $subject = "FEEDBACK & ENQUIRY FORM";
                              $message = "<BR><B> Name & Surname:- </B>".$name."<BR><BR><B> Address:- </B>".$addre."<BR><BR><B> City:- </B>".$city."<BR><BR><B>Pincode:-</B><BR>".$pincode."<BR><BR><B> Mobile Phone:- </B>".$phone."<BR><BR><B> Landline Phone: </B>".$landline."<BR><BR><B> Address:- <BR><BR><B> Email Address:- </B>".$email."<BR><BR><B> 2-Bed Room Apt.:- </B>".$bedroomapt."<BR><BR><B> 3-Bed Room Apt.:- </B>".$bedroom23."<BR><BR><B> Pent House 5-Bed Room Apt.:- </B>".$fivebed."<BR><BR><B> Investment Option.:- </B>".$investment."<BR><BR><B>2nd Home @ Jammu:--</B>".$jammuhome."<BR><BR><B>Concept Appeal:--</B>".$cappeal."<BR><BR><B>Other Plz Specify:--</B>".$identify."<BR><BR><B>Simula Infra – Phase Wise Payment Plan:--</B>".$other."<BR><BR><B>Bank Loan J&K Bank:--</B>".$bankjk."<BR><BR><B>Bank Loan, HDFC Bank:--</B>".$otherbank."<BR><BR><B>Any other Bank or Mode.:- </B>".$ot;
                              $headers  = "MIME-Version: 1.0\r\n";
                              $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
                              $headers .= "From:".$email;
                              // Additional headers
                              //$headers .= 'Bcc: [email protected]' . "\r\n";
                              $mailStatus=mail($to, $subject, $message, $headers);
                    /* ========================= END CODE =====================*/
?>
<script language="javascript">
function isEmail(email)
                    if(email.indexOf("@") != "-1" && email.indexOf(".") != "-1")
                    return true;
                    else
                    return false;
          function validate()
                    if(document.enquiryForm.txtName.value=="")
                              alert("Name required!");
                              document.enquiryForm.txtName.focus();
                              return false;
                    if(document.enquiryForm.txtEmail.value=="")
                              alert("Email required!");
                              document.enquiryForm.txtEmail.focus();
                              return false;
                    if (isEmail(document.enquiryForm.txtEmail.value) == false)
                              alert("Please Enter Your E-mail Address Correctly!")
                              document.enquiryForm.txtEmail.focus();
                              return false
                    if(document.enquiryForm.txtPhone.value=="")
                              alert("Please Enter your Phone!");
                              document.enquiryForm.txtPhone.focus();
                              return false;
                    if(document.enquiryForm.txtCountry.value=="")
                              alert("Please Select your country!");
                              document.enquiryForm.txtCountry.focus();
                              return false;
                    if(document.enquiryForm.txtSuggestion.value=="")
                              alert("Please Enter How can we assist you?!");
                              document.enquiryForm.txtSuggestion.focus();
                              return false;
</SCRIPT>
<style type="text/css">
<!--
.home_page_font {
          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11px;
          font-style: normal;
          line-height: normal;
          font-weight: bold;
          font-variant: normal;
          text-transform: none;
          color: #333333;
          text-align: justify;
.home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11.6px;
          font-style: normal;
          line-height: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          color: #333333;
          text-align: justify;
.home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11px;
          font-style: normal;
          line-height: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          color: #868d98;
          text-align: justify;
.style6 {color: #000000}
.style7 {
          font-size: 12px;
          font-weight: bold;
body,td,th {
          font-family: Arial, Helvetica, sans-serif;
          font-size: 11px;
          color: #868d98;
-->
</style>
        <FORM ACTION="" METHOD="GET" NAME="enquiryForm" ONSUBMIT=" return validate()">
                    <INPUT TYPE="HIDDEN" NAME="formFilledStatus" VALUE="t">
               <DIV ALIGN="LEFT">
        <TABLE WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="3" CELLSPACING="0" BORDERCOLOR="#F1D6D6" class="home_page_font1" STYLE="border-collapse:collapse;">
        <?php
                    /* ============ CODE IF MAIL SUCCESSFULLY SENT ====================== */
                    if($mailStatus)
                    ?>
              <TR>
            <TD COLSPAN="10" HEIGHT="25">
            <DIV class="c-text1" ALIGN="CENTER"><b>
            <h3 class="style6">Your Enquiry Has Been Successfully Sent.<b></h3>
            </DIV></TD>
          </TR>
                      <?
                      /*================== CODE END ====================================== */
?>
                      <TR>
            <TD COLSPAN="10" HEIGHT="25">
            <DIV class="home_page_font" ALIGN="CENTER">
              <div align="left"></div>
            </DIV></TD>
          </TR>
          <TR>
            <TD colspan="10" class="power-com1"><span class="style7">Paradise Avenue - Enquiry &amp; Know Your Customer Form</span></TD>
          </TR>
          <TR>
            <TD width="16%" class="power-com1"><FONT COLOR="#FF0000">* </FONT><STRONG>Name &amp; Surname:</STRONG></TD>
            <TD colspan="9"><INPUT NAME="txtName" SIZE="35" MAXLENGTH="48" VALUE="" class="txtfld"></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Address: </strong></TD>
            <TD colspan="9"><input name="add" size="35" maxlength="48" value="" class="txtfld" id="add" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>City:</strong></TD>
            <TD colspan="9"><input name="city" size="35" maxlength="48" value="" class="txtfld" id="city" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Pincode:</strong></TD>
            <TD colspan="9"><input name="pincode" size="35" maxlength="48" value="" class="txtfld" id="pincode" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Mobile Phone#</strong></TD>
            <TD colspan="9"><input name="mob" size="35" maxlength="48" value="" class="txtfld" id="mob" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Landline Phone#</strong></TD>
            <TD colspan="9"><input name="landline" size="35" maxlength="48" value="" class="txtfld" id="landline" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><STRONG>Email Address: </STRONG></TD>
            <TD colspan="9"><INPUT NAME="txtEmail" MAXLENGTH="48" SIZE="35" VALUE="" class="txtfld"></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Know Your Interest: </strong></TD>
            <TD colspan="9"><table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="8%">2-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="2bed" id="2bed" /></td>
                <td width="1%"> </td>
                <td width="8%">3-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="3bedroom" id="3bedroom" /></td>
                <td width="2%"> </td>
                <td width="14%">Pent House 5-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="5bedroom" id="5bedroom" /></td>
                <td width="1%"> </td>
                <td width="49%"> </td>
                <td width="8%"> </td>
              </tr>
            </table></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Reason for Purchase:</strong></TD>
            <TD colspan="9"><table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="9%">Investment Option</td>
                <td width="2%"><input type="checkbox" name="inv" id="inv" /></td>
                <td width="2%"> </td>
                <td width="10%">2nd Home @ Jammu </td>
                <td width="0%"> </td>
                <td width="4%"><input type="checkbox" name="2ndhome" id="2ndhome" /></td>
                <td width="1%"> </td>
                <td width="10%">Concept Appeal </td>
                <td width="2%"><input type="checkbox" name="concept" id="concept" /></td>
                <td width="6%"> </td>
                <td width="7%">Other Plz Specify </td>
                <td width="17%"><input type="text" name="specify" id="specify" /></td>
                <td width="1%"> </td>
                <td width="12%"> </td>
                <td width="12%"> </td>
                <td width="0%"> </td>
                <td width="5%"> </td>
              </tr>
            </table></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Preferential Mode of Payment </strong></TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1">Simula Infra &ndash; Phase Wise Payment Plan</TD>
            <TD colspan="9"><input type="checkbox" name="simula-infra" id="simula-infra" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1">Bank Loan </TD>
            <TD width="5%">J&amp;K Bank</TD>
            <TD width="2%"><input type="checkbox" name="j&amp;kbank" id="j&amp;kbank" /></TD>
            <TD width="5%">HDFC Bank</TD>
            <TD width="0%"> </TD>
            <TD width="6%"><input type="checkbox" name="hdfc" id="hdfc" /></TD>
            <TD width="3%"> </TD>
            <TD width="6%">Any other Bank or Mode</TD>
            <TD width="42%"><input type="text" name="anyotherbank" id="anyotherbank" /></TD>
            <TD width="15%"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD COLSPAN="10">
            <CENTER><INPUT TYPE="SUBMIT" NAME="" VALUE="Submit Query">
            <INPUT TYPE="RESET" NAME="Reset1"></CENTER></TD>
          </TR>
        </TABLE>
          </DIV></FORM>

<?php
          /* ========================= CODE WILL EXECUTE WHEN FORM WILL SUBMIT =====================*/
                    if($_GET["formFilledStatus"]=="t")
                              $name = $_GET['txtName'];
                              $addre = $_GET['add'];
                              $city          =          $_GET['city'];
                              $pincode          =          $_GET['pincode'];
                              $phone          =          $_GET['mob'];
                              $landline          =          $_GET['landline'];
                              $email          =          $_GET['txtEmail'];
                              $bedroomapt          =          $_GET['2bed'];
                              $bedroom23          =          $_GET['3bedroom'];
                              $fivebed          =          $_GET['5bedroom'];
                              $investment          =          $_GET['inv'];
                              $jammuhome          =          $_GET['2ndhome'];
                              $cappeal          =          $_GET['concept'];
                              $identify          =          $_GET['specify'];
                              $other          =          $_GET['simula-infra'];
                              $bankjk          =          $_GET['j&kbank'];
                              $otherbank          =          $_GET['hdfc'];
                              $ot          =          $_GET['anyotherbank'];
                              $to= "[email protected]";
                              $subject = "FEEDBACK & ENQUIRY FORM";
                              $message = "<BR><B> Name & Surname:- </B>".$name."<BR><BR><B> Address:- </B>".$addre."<BR><BR><B> City:- </B>".$city."<BR><BR><B>Pincode:-</B><BR>".$pincode."<BR><BR><B> Mobile Phone:- </B>".$phone."<BR><BR><B> Landline Phone: </B>".$landline."<BR><BR><B> Address:- <BR><BR><B> Email Address:- </B>".$email.$message<BR><BR><h1>Know your interest:</h1><B> 2-Bed Room Apt.:
                              "<BR><BR><B> 2-Bed Room Apt.:- </B>".$bedroomapt."<BR><BR><B> 3-Bed Room Apt.:- </B>".$bedroom23."<BR><BR><B> Pent House 5-Bed Room Apt.:- </B>".$fivebed."<BR><BR><B> Investment Option.:- </B>".$investment."<BR><BR><B>2nd Home @ Jammu:--</B>".$jammuhome."<BR><BR><B>Concept Appeal:--</B>".$cappeal."<BR><BR><B>Other Plz Specify:--</B>".$identify."<BR><BR><B>Simula Infra – Phase Wise Payment Plan:--</B>".$other."<BR><BR><B>Bank Loan J&K Bank:--</B>".$bankjk."<BR><BR><B>Bank Loan, HDFC Bank:--</B>".$otherbank."<BR><BR><B>Any other Bank or Mode.:- </B>".$ot;
                              $headers  = "MIME-Version: 1.0\r\n";
                              $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
                              $headers .= "From:".$email;
                              // Additional headers
                              //$headers .= 'Bcc: [email protected]' . "\r\n";
                              $mailStatus=mail($to, $subject, $message, $headers);
                    /* ========================= END CODE =====================*/
?>
<script language="javascript">
function isEmail(email)
                    if(email.indexOf("@") != "-1" && email.indexOf(".") != "-1")
                    return true;
                    else
                    return false;
          function validate()
                    if(document.enquiryForm.txtName.value=="")
                              alert("Name required!");
                              document.enquiryForm.txtName.focus();
                              return false;
                    if(document.enquiryForm.txtEmail.value=="")
                              alert("Email required!");
                              document.enquiryForm.txtEmail.focus();
                              return false;
                    if (isEmail(document.enquiryForm.txtEmail.value) == false)
                              alert("Please Enter Your E-mail Address Correctly!")
                              document.enquiryForm.txtEmail.focus();
                              return false
                    if(document.enquiryForm.txtPhone.value=="")
                              alert("Please Enter your Phone!");
                              document.enquiryForm.txtPhone.focus();
                              return false;
                    if(document.enquiryForm.txtCountry.value=="")
                              alert("Please Select your country!");
                              document.enquiryForm.txtCountry.focus();
                              return false;
                    if(document.enquiryForm.txtSuggestion.value=="")
                              alert("Please Enter How can we assist you?!");
                              document.enquiryForm.txtSuggestion.focus();
                              return false;
</SCRIPT>
<style type="text/css">
<!--
.home_page_font {
          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11px;
          font-style: normal;
          line-height: normal;
          font-weight: bold;
          font-variant: normal;
          text-transform: none;
          color: #333333;
          text-align: justify;
.home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11.6px;
          font-style: normal;
          line-height: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          color: #333333;
          text-align: justify;
.home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
          font-size: 11px;
          font-style: normal;
          line-height: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          color: #868d98;
          text-align: justify;
.style6 {color: #000000}
.style7 {
          font-size: 12px;
          font-weight: bold;
body,td,th {
          font-family: Arial, Helvetica, sans-serif;
          font-size: 11px;
          color: #868d98;
-->
</style>
        <FORM ACTION="" METHOD="GET" NAME="enquiryForm" ONSUBMIT=" return validate()">
                    <INPUT TYPE="HIDDEN" NAME="formFilledStatus" VALUE="t">
               <DIV ALIGN="LEFT">
        <TABLE WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="3" CELLSPACING="0" BORDERCOLOR="#F1D6D6" class="home_page_font1" STYLE="border-collapse:collapse;">
        <?php
                    /* ============ CODE IF MAIL SUCCESSFULLY SENT ====================== */
                    if($mailStatus)
                    ?>
              <TR>
            <TD COLSPAN="10" HEIGHT="25">
            <DIV class="c-text1" ALIGN="CENTER"><b>
            <h3 class="style6">Your Enquiry Has Been Successfully Sent.<b></h3>
            </DIV></TD>
          </TR>
                      <?
                      /*================== CODE END ====================================== */
?>
                      <TR>
            <TD COLSPAN="10" HEIGHT="25">
            <DIV class="home_page_font" ALIGN="CENTER">
              <div align="left"></div>
            </DIV></TD>
          </TR>
          <TR>
            <TD colspan="10" class="power-com1"><span class="style7">Paradise Avenue - Enquiry &amp; Know Your Customer Form</span></TD>
          </TR>
          <TR>
            <TD width="16%" class="power-com1"><FONT COLOR="#FF0000">* </FONT><STRONG>Name &amp; Surname:</STRONG></TD>
            <TD colspan="9"><INPUT NAME="txtName" SIZE="35" MAXLENGTH="48" VALUE="" class="txtfld"></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Address: </strong></TD>
            <TD colspan="9"><input name="add" size="35" maxlength="48" value="" class="txtfld" id="add" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>City:</strong></TD>
            <TD colspan="9"><input name="city" size="35" maxlength="48" value="" class="txtfld" id="city" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Pincode:</strong></TD>
            <TD colspan="9"><input name="pincode" size="35" maxlength="48" value="" class="txtfld" id="pincode" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Mobile Phone#</strong></TD>
            <TD colspan="9"><input name="mob" size="35" maxlength="48" value="" class="txtfld" id="mob" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Landline Phone#</strong></TD>
            <TD colspan="9"><input name="landline" size="35" maxlength="48" value="" class="txtfld" id="landline" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><STRONG>Email Address: </STRONG></TD>
            <TD colspan="9"><INPUT NAME="txtEmail" MAXLENGTH="48" SIZE="35" VALUE="" class="txtfld"></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Know Your Interest: </strong></TD>
            <TD colspan="9"><table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="8%">2-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="2bed" id="2bed" /></td>
                <td width="1%"> </td>
                <td width="8%">3-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="3bedroom" id="3bedroom" /></td>
                <td width="2%"> </td>
                <td width="14%">Pent House 5-Bed Room Apt</td>
                <td width="1%"> </td>
                <td width="2%"><input type="checkbox" name="5bedroom" id="5bedroom" /></td>
                <td width="1%"> </td>
                <td width="49%"> </td>
                <td width="8%"> </td>
              </tr>
            </table></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Reason for Purchase:</strong></TD>
            <TD colspan="9"><table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="9%">Investment Option</td>
                <td width="2%"><input type="checkbox" name="inv" id="inv" /></td>
                <td width="2%"> </td>
                <td width="10%">2nd Home @ Jammu </td>
                <td width="0%"> </td>
                <td width="4%"><input type="checkbox" name="2ndhome" id="2ndhome" /></td>
                <td width="1%"> </td>
                <td width="10%">Concept Appeal </td>
                <td width="2%"><input type="checkbox" name="concept" id="concept" /></td>
                <td width="6%"> </td>
                <td width="7%">Other Plz Specify </td>
                <td width="17%"><input type="text" name="specify" id="specify" /></td>
                <td width="1%"> </td>
                <td width="12%"> </td>
                <td width="12%"> </td>
                <td width="0%"> </td>
                <td width="5%"> </td>
              </tr>
            </table></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"><strong>Preferential Mode of Payment </strong></TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1">Simula Infra &ndash; Phase Wise Payment Plan</TD>
            <TD colspan="9"><input type="checkbox" name="simula-infra" id="simula-infra" /></TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD class="power-com1">Bank Loan </TD>
            <TD width="5%">J&amp;K Bank</TD>
            <TD width="2%"><input type="checkbox" name="j&amp;kbank" id="j&amp;kbank" /></TD>
            <TD width="5%">HDFC Bank</TD>
            <TD width="0%"> </TD>
            <TD width="6%"><input type="checkbox" name="hdfc" id="hdfc" /></TD>
            <TD width="3%"> </TD>
            <TD width="6%">Any other Bank or Mode</TD>
            <TD width="42%"><input type="text" name="anyotherbank" id="anyotherbank" /></TD>
            <TD width="15%"> </TD>
          </TR>
          <TR>
            <TD class="power-com1"> </TD>
            <TD colspan="9"> </TD>
          </TR>
          <TR>
            <TD COLSPAN="10">
            <CENTER><INPUT TYPE="SUBMIT" NAME="" VALUE="Submit Query">
            <INPUT TYPE="RESET" NAME="Reset1"></CENTER></TD>
          </TR>
        </TABLE>
          </DIV></FORM>

Similar Messages

  • How can i build a manchester coding in labview signal processing?

    how can i build a manchester coding in labview signal processing?
    mean to say that how can i digitize my audio input.i waqnt to convert my audio input into manchester coded data format!!!
    kindly post related VIs
    regards
    Solved!
    Go to Solution.

    idma-
    Check out the LabVIEW FPGA example http://zone.ni.com/devzone/cda/epd/p/id/6126
    Generate Manchester Signal
    Basic example showing generation of a Manchester encoded data stream. The data to be sent is generated in one loop and passed to a FPGA FIFO. The subVI which generates the Manchester data stream reads the data bytes form the FIFO and passes them to the digital output. The subVI prepends a simple header to each data packet which allows a reader (see next example) to synchronize and acquire/parse the data. The header consists of a thee half bit pulse followed by a one half bit pulse. The three half bit pulse is not a valid component of regular Manchester encoding and can therefore be differentiated from the rest of the protocol. In addition it can be used by the receiver to to easily measure the bit rate of the protocol. By dividing the length of the three half bit pulse in half (3/4 of a bit), the receiver has a measure to differentiate between full and half bit pulses in the rest of the protocol.
    Generate and Read Manchester Signal
    An extension of the previous example which adds a Manchester receiver subVI. You must physically wire the digital output channel to your input channel to loop back the data outside the I/O connector of your FPGA R series card or C series module. The Manchester receiver subVI is expecting the data packet to be prepended by a header as explained in the previous section.
    I will see if the is a more precise example but this should help
    Sam S
    Applications Engineer
    National Instruments

  • How can I add header on printing with Numbers

    How can I add header on printing with Numbers? The previous version use to have it and I cannot find it in the new one ...

    Hi Tanya,
    Glad to hear that you found how to edit page headers and footers in Numbers 3.2. I agree that Help in Numbers 3 is woeful. No searchable PDF to download and use offline. All is online (one page at a time) and we need to know the terms we are looking for before we look.
    The first HelpDesk:
    http://www.youtube.com/watch?v=pQHX-SjgQvQ
    For printing to paper where layout is important, I use Numbers '09 (Numbers 2.3) with its Print View. But it is orphanware. As the name suggests, there has not been a major overhaul since 2009. With that in mind, it is a useful version to hang onto while we hope and wait (and provide feedback to Apple) for something in future versions of Numbers 3.x to provide better layout capability.
    Indeed, each new update of Numbers 3.x has restored more of the old features while adding new features that are enhancements over Numbers '09. Many of the Numbers 3 enhancements reflect long-awaited wishes through this forum, and were passed on by Numbers Feedback to Apple. So it seems that Apple does take heed of feedback.
    In the meantime, I enjoy the charm of Numbers '09 whilst exploring the new features of Numbers 3.
    What has been GAINED in Numbers 3 is here:
    https://discussions.apple.com/thread/5473882?start=75&tstart=0
    (Very long thread because it started with Numbers 3.0, and enhancements have continued through Numbers 3.2).
    Hints on workarounds in Numbers 3 is here:
    https://discussions.apple.com/message/23622372#23622372
    Some workarounds are no longer needed, but what amazes me is how many Numbers '09 features (the so-called "lost" features) were not lost; the settings have simply been moved. Moreover, many features such as margin settings carry over with a Numbers '09 document or template into Numbers 3.
    Hints for layout on screen before printing to paper:
    Try Alignment Guides and Rulers as suggested here:
    Print View workarounds
    Use a layout guide:
    Layout Guide for Numbers
    Regards,
    Ian.

  • How can i read header text?

    how can i read header text?
    ie, i want to read two values that are stored as header text in purchase order.
    how can i retrieve that values?

    Hi,
    The long texts of a document are stored in a encrypted format in the STXH and STXL tables, where STXH stores the header information of the
    long text like TDOBJECT, which indicates which text object the long text belongs to, TDID which indicates the Text ID and TDNAME which is
    the actual name of the long text.
    As these texts are stored in a encrypted format, the text cannot be read using a SELECT statement. You will have to use the function READ_TEXT. The easiest way of getting to know the parameter values is to go to a document, open the long text in a full screen mode. For example, when you wan to see the long text for a Purchase order, go to transaction ME23n. Assume, you want to see the parameters for the Header Text. In the first Tab Strip Control, click on the Texts tab and select the Header Text node on the left hand side, which will display the text on the right hand side. Now, double click on the text editor on the right hand side. This will open the text in the full screen mode. In the menu Go To --> Header, you should be able to see the values for all the three parameters we discussed above. We will have to do the same thing for whichever text parameters we want to see.
    TREC-TDSPRAS = SY-LANGU.
    TREC-TDID = 'ECCS'.
    TREC-TDOBJECT = 'ZECCS'.
    TREC-TDNAME = Z_ACCOUNT.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    ID = TREC-TDID
    LANGUAGE = TREC-TDSPRAS
    NAME = TREC-TDNAME
    OBJECT = TREC-TDOBJECT
    TABLES
    LINES = LINES
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8.
    Details:
    Language DE
    Text ID F01 Header text
    Text Object EKKO Purchasing doc. header texts
    Regards,
    Shiva Kumar

  • How can i create Header and items in SMART FORM

    Hi Experts,
    How can i create Header and items in SMART FORM in the below driver program.
    _Header fields_
    SELECT BUKRS BUDAT GJAHR CPUDT USNAM BLART BELNR XBLNR BLDAT WAERS KURSF
      FROM BKPF INTO CORRESPONDING FIELDS OF TABLE IT_HEAD WHERE BELNR IN S_BELNR AND BUDAT IN S_BUDAT AND GJAHR EQ S_GJAHR AND BUKRS EQ S_BUKRS AND CPUDT IN S_CPUDT AND USNAM IN S_USNAM.
    Item firlds
    SELECT BUZEI BSCHL SGTXT SHKZG KOSTL PRCTR WERKS WRBTR HKONT KUNNR ZFBDT FROM BSEG INTO CORRESPONDING FIELDS OF TABLE IT_ITEM
      FOR ALL ENTRIES IN  IT_HEAD WHERE BELNR = IT_HEAD-BELNR AND GJAHR = IT_HEAD-GJAHR AND BUKRS = IT_HEAD-BUKRS.
      LOOP AT IT_HEAD.
    MOVE-CORRESPONDING IT_HEAD TO FINAL.
        LOOP AT IT_ITEM
        WHERE BELNR = IT_HEAD-BELNR.
          MOVE-CORRESPONDING IT_ITEM TO FINAL.
    ENDLOOP.
    ENDLOOP.
    Regards,
    Sreedhar.

    for these internal tables you can pass some Identifier  for both tables.
    in header file : IT_HEAD
    IDENT   type  char10,
    BUKRS type BUKRS,
    BUDAT type BUDAT,  like
    in header file :IT_ITEM
    IDENT   type  char10,
    BUZEI type BUZEI,
    BSCHL type BSCHL,  like  in item data
    you need to fille the  IDENT value like
    IT_HEAD:
    10 -- DE01-- 10.20.2009
    20 -- CH01-- 10.20.2009
    IT_ITEM
    10 -- 1234-- KSCHL value  like all records
    10 -- 2345-- KSCHL value  like all records
    10 -- 6783-- KSCHL value  like all records
    20 -- 3452-- 1KSCHL value  like all records
    20 -- 4532-- KSCHL value  like all records
    20 -- 4535-- KSCHL value  like all records
    in smartform you need to create 2 tables.
    or create
    LOOP  with IT_HEAD
    table with IT_HEAD
    table with IT_ITEM
    and put the condition for each table in  DATA tab where condtion  like IDENT = IT_HEAD-IDENT
    in item table also INDENT = IT_ITEM-INDENT..

  • How can I have header only once in group above rep

    Hi
    I have developed a group above report and i see that the main header is repeated for every row (that is group by row). How can I have that only once per page or report and not repeat for every record?

    The "main header" must be inside the repeating frame. Put the repeating frame in its own non-repeating frame, put the header in its own frame inside this frame at the top.
    It sounds like you are using the report wizard... if so, don't.

  • Help!How can Flex+PHP+MSSQL(Microsoft) work together?

    I have already learned how to make Flex + PHP + MySQL work together.Simply by Zend AMF.
    But my company wants to use MSSQL(Microsoft) as the database.
    I also use the Zend AMF.
    But it returns the Fatal error: Uncaught exception 'Zend_Amf_Server_Exception' with message 'Handle error: Unable to writeObject output: Can not serialize resource type: mssql result 499' in C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php:631Stack trace:#0 C:\wamp\www\BQSB-debug\gateway.php(69): Zend_Amf_Server->handle()#1 {main} thrown in C:\wamp\www\ZendFramework\library\Zend\Amf\Server.php on line 631
    How can I handle the error?
    Can Flex+PHP+MSSQL(Microsoft) work together by Zend AMF?
    Or there are other ways to make Flex+PHP+MSSQL(Microsoft) work together.
    Please help me, I am waiting online,thx.

    I am currently using Flex 4+Php+Zend with a MSSQL backend.
    I use the microsoft sql php driver to interface from PHP to MSSQL.  http://www.microsoft.com/sqlserver/2005/en/us/php-driver.aspx
    Hope that helps

  • How can we alv header font size increase

    hi experts,
    how can we increase the font size in alv report?
    i am using html_top_of_page
    regards
    guna

    Make use of the class - CL_DD_DOCUMENT
    Code below may give you some help.
    FORM HTML_TOP_OF_PAGE USING R_TOP TYPE REF TO CL_DD_DOCUMENT.
      text = 'Test' .
    CALL METHOD R_TOP->ADD_TEXT
        EXPORTING
          TEXT      = TEXT
          SAP_STYLE = 'HEADING'.
    endform.
    Thanks!

  • How can I remove header in vacation message?

    Vacation message includes header and text in message body. I need that vacation message doesn't include header in message body. How can I setup it?
    Thanks.

    From the admin guide:
    http://docs.sun.com/source/817-6266/users.html
    scroll down to the autoreply part:
    To Configure Auto-Reply Settings
    The auto-reply feature of Messaging Server lets you specify an automatic response to incoming mail for a user. You can specify two different auto-reply modes: vacation mode and auto-reply mode.
    The Delegated Administrator for Messaging also provides an end-user HTML interface through which users can themselves enable and configure auto-reply settings. The Console interface and the Delegated Administrator interface both manipulate the same directory attributes; when opened, each shows the current settings, whether they were set by the administrator or by the user.
    Note
    The Delegated Administrator for Messaging only supports Sun Java System LDAP Schema v. 1, not v.2
    To enable an auto-reply service for a user:
    1. In Console, access the Create User or Edit Entry window, as described in To Access Mail Users.
    2. Click the Mail tab.
    3. Click the Auto-Reply tab.
    4. Select one of the auto-reply modes:
    Off: Disables auto-reply for this user.
    Vacation: The first message received by this user from a given sender generates an automatic response; subsequent messages from that sender do not generate a response until the automatic reply time-out is reached. When the time-out is reached, a new message is sent, once, until the next time-out is reached, and so on. If you select this mode, you use the Vacation start/end date options and enter a reply message in the Reply text field.
    5. If you selected vacation mode, supply dates and times to determine when the auto-reply message should start and end:
    * Check the Vacation start/end date checkbox.
    * Click the Edit buttons for Start and End then use the calendar that displays to specify a date and time.
    6. Specify an automatic reply time-out value in hours or days.
    7. If you selected vacation mode, type an auto-reply subject line, then type a reply message to be returned to the sender.
    You can type a reply message for internal senders and a reply message for external senders. If you type a reply only for internal senders, only senders within your domain will receive an automatic reply.
    You can create one message in each of several available languages that you select with the drop-down list located above the message text area.
    8. Click OK at the bottom of the Edit Entry window if you have finished making changes to this user�s mail information. Otherwise, click other tabs to continue making changes.

  • How can I assign a hard coded value to a variable of type OBJECT.

    Hi,
       I have to call the following method
                                      lc_action_execute->get_ref_object(
                                                            exporting
                                                                  io_appl_object = io_appl_object
                                                            importing
                                                                   ev_guid_ref    = lv_guid_ref.
    Now I have to hard code the io_appl_object variable (of type OBJECT) to test my application for the time being. How can I assign a value to the variable? Is there any way to do that?

    I wouldn't use WDR_CONTEXT_ATTR_VALUE_LISTGEN.  Use wdr_context_attr_value_list instead:
    data l_topics type zpm_main_topic_tbl.
      l_topics = wd_assist->read_all_topics( ).
      data lt_valueset type wdr_context_attr_value_list.
      field-symbols <wa_topic> like line of l_topics.
      field-symbols <wa_vs>  like line of lt_valueset.
      loop at l_topics assigning <wa_topic>.
        append initial line to lt_valueset assigning <wa_vs>.
        <wa_vs>-value = <wa_topic>-main_topic.
        <wa_vs>-text  = <wa_topic>-main_topic_desc.
      endloop.
      data lo_nd_meeting type ref to if_wd_context_node.
    * navigate from <CONTEXT> to <MEETING> via lead selection
      lo_nd_meeting = wd_context->get_child_node( name = wd_this->wdctx_meeting ).
      data lo_node_info type ref to if_wd_context_node_info.
      lo_node_info = lo_nd_meeting->get_node_info( ).
      lo_node_info->set_attribute_value_set(
         name = 'MAIN_TOPIC'
         value_set = lt_valueset ).

  • Toshiba 3TB DT01ACA300 hard drive. How can I disable head parking?

    I bought a Toshiba 3TB DT01ACA300 hard drive. It occasionally makes a click, not like a drive failing click but it sounds a lot like a head parking click. I've heard that type of sound before in laptops that I have and it's tolerable. Coming from my desktop though it's infuriating. Is there any way I can disable the head parking? Does anyone here work for Toshiba? Does anyone else have this drive? Do you notice an occasional click?
    I found another thread about this model and head parking but I think what that guy describes is different::
    Toshiba 3TB DT01ACA300 - head parking problem
    Also I tried Toshiba's support page. I entered serial number and model number and it doesn't recognize either, so if there is any new firmware or tool for this drive I can't find it. I did find a Toshiba technical support form which I will use if I can't resolve my issue here in the forum.
    Thanks

    bad drive, return it
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • How can make the header repeat in every page?

    I followed the instructions in pages' help nad it does work for text heardes, however it does not work with images and graphics.
    Daoes anyone know how to make graphic and/or images headers repeat in each page?
    Thanks in advance.
    Ruben

    Make them Master Objects:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&highlight=letter head&mforum=iworktipsntrick
    Peter

  • How can we put header(title on top) in scripts

    hi
    experts
    can u help me plzzzzzzzzzzzzzzzzzzzzzz
    for this

    HI
    Header Data
    You can find header data in both form and style maintenance. In style maintenance, it is used primarily to present important information – information designed to make it easier for the end user to select a style. The header data in form maintenance, on the other hand, is used for information and control purposes. For this reason, the header data of a form will be described in more detail.
    Below, the header data is described as it appears in the alphanumeric Form Painter.
    Like the header data of a style, the header data of a form comprises two parts: the data set by the system and the data you are expected to enter. The latter is dealt with separately.
    · Device-independent entries.
    · Description
    A short explanatory description of the form (also applies to the style), designed to make selection easier for the end user.
    · Form class
    You can assign a form to a class to help you organize and search for forms. The default set of classes is the set of program classes in your system.
    · Start page
    Tells the print program which page format in a form to use first for printing.
    · Default paragraph
    Paragraph set to * in standard text maintenance.
    · Tab stop
    A grid set at specified intervals in all windows defined in the form. However, you should note that the tab stops are only valid in paragraphs where you have not defined your own tabs.
    · Language, Original language, Translation applic
    Use these fields to record the master language and language of the current version of a form. Marking Translation applic makes the form accessible for translation from the SAP System’s translation tools (transaction SE63).
    · Device-dependent entries.
    You can only enter values here that are supported in the R/3 printer definition. If you make other entries, this leads to errors in the check routine.
    · Page format
    Determined from the spool administration table with transaction SPAD. Make sure there is a printer assignment – there must be an additional spool format for the printer with the same page format.
    · Orientation
    Depends on the page format selected. This can also be determined from the spool administration table. Please note that the formats landscape and portrait are not supported by all printers.
    · Lines per inch (LPI)
    Basis for converting the unit of measurement LN in style and form maintenance. The value 6.00 is set by the system, as this value is supported by all printers.
    · Characters per inch (CPI)
    Basis for converting the unit of measurement CH in style and form maintenance. The value 10.00 is set by the system, as this value is supported by all printers.
    · Font attributes
    With these fields, you can set the default font for a form. The default font applies if other objects do not specify a font. SAPscript suggests a default font, which you can change.
    Defining Header Data
    The header data of a form consist of Administration data and Basic settings.
    The Administration data include Administration information and Language attributes.
    ·     In the Administration information group, enter
    ·     Form name
    ·     Description
    ·     Development class
    ·     In the Lang. attributes (Language attributes) group, you find
    ·     Original language
    ·     Current language (language key)
    ·     Information on the translation of the form.
    ·     Status information about the current form status (active, edited, and so on).
    Before entering other header data,
    7. Define the paragraph formats of the form.
    8. Define the character formats of the form.
    9. Return to the header and complete it.
    Reward all helpfull answers
    Regards
    Pavan

  • How can repeate the header in hierarical alv

    Hi all,
       i want to display the two header for each key item in hierarchal ALV.
    please let me know if there any way to the above requirement.
    Regards
    Anil Kumar K

    Try this link :
    Re: Can i Have multiple levels of records in ALV GRID
    Hope It`ll give you some guide line .
    Thanks

  • How can I replace heads in my photos?

    I want to delete a person from my photo and replace with a different person from another photo.  Also want to use a different body & head from other photos.

    Welcome to the forum.
    This thread has some good tutorials, that should help you: http://forums.adobe.com/thread/1106932?tstart=90
    Good luck,
    Hunt

Maybe you are looking for

  • Down Payment with Tax Juristiction

    Hi All, We are working on a process where the client(US & CA) needs the Juristiction Tax to be calculated on the Down Payments. Is anyone worked on this scenerio and please guide us how to do this? Thanks in Advance Vinu Nanjan

  • How many internal HDs can I add to my G4 AGP tower?

    Hi all, How many internal HDs can I add into my G4 tower? I want to buy and use a SATA controller PCI card to break the 137 mb barrier and add 3 or more hds for my graphics art files, video and music files. Sort like a server right? Thanks web dude

  • Slippery problem: disappearing data from SMB shares

    I have an Xserve running 10.5.8 serving as a Samba PDC for my school. Clients are using XP Pro SP2. Every user gets a home directory which is mounted at logon as a mapped drive, and a profile folder which contains the Desktop, My Documents, personal

  • Transfering music to another pc[to notebook]from existing p.c

    transfering my music library from existing pc terminal to new notebook account on another us

  • Pivot Table Result

    Hi all, I am querying a table, which has four rows, with two col. Description Value A 5 B 2 C 1 D 7 Now I want result as follows in one row A B C D 5 2 1 7 can any one suggest me query Rgds