1 form page with multiple search

Hello to everyone I have a question.  I have a page that has a form to input into MySQL using PHP.  What I am trying to do is have two searches that pulls out the information from different tables within the database, and put that information into the form and then save the form into its own table.  I can search the tables and use dynamic record set to post the information to the form but when I do the second search the first search disappears. But the second search is posted into the form.  This is the sample page.  http://www.1stsourcesolution.com/ins...rmit_index.php. The code for the page is quite lengthy but here it is. Thanks for any input.
<?php require_once('../Connections/testdata.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form4")) {
  $insertSQL = sprintf("INSERT INTO inspection (idinspection, inspection_date, comments, employee_idemployee, pass_failed) VALUES (%s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['idinspection'], "int"),
                       GetSQLValueString($_POST['inspection_date'], "date"),
                       GetSQLValueString($_POST['comments'], "text"),
                       GetSQLValueString($_POST['employee_idemployee'], "int"),
                       GetSQLValueString($_POST['pass_failed'], "text"));
  mysql_select_db($database_testdata, $testdata);
  $Result1 = mysql_query($insertSQL, $testdata) or die(mysql_error());
  $insertGoTo = "permit_index.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  header(sprintf("Location: %s", $insertGoTo));
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
$colname_tms_search = "-1";
mysql_select_db($database_testdata, $testdata);
$query_tms_search = sprintf("SELECT tms_id, TMS, ONAME, ADDR, MADD, CITY, `STATE`, ZIP, permit.permit_id FROM tax_map, permit WHERE ONAME LIKE %s or TMS LIKE %s or MADD like %s ORDER BY permit.permit_id", GetSQLValueString($colname_tms_search . "%", "text"),GetSQLValueString($colname_tms_search . "%", "text"),GetSQLValueString($colname_tms_search . "%", "text"));
$tms_search = mysql_query($query_tms_search, $testdata) or die(mysql_error());
$row_tms_search = mysql_fetch_assoc($tms_search);
$colname_tms_search = "-1";
$colname_tms_search = "-1";
if (isset($_POST['ownerProperSearch'])) {
  $colname_tms_search = $_POST['ownerProperSearch'];
mysql_select_db($database_testdata, $testdata);
$query_tms_search = sprintf("SELECT tms_id, TMS, ONAME, ADDR, MADD, CITY, `STATE`, ZIP, permit.permit_id FROM tax_map, permit WHERE ONAME LIKE %s or TMS LIKE %s or MADD like %s ORDER BY permit.permit_id", GetSQLValueString($colname_tms_search . "%", "text"),GetSQLValueString($colname_tms_search . "%", "text"),GetSQLValueString($colname_tms_search . "%", "text"));
$tms_search = mysql_query($query_tms_search, $testdata) or die(mysql_error());
$row_tms_search = mysql_fetch_assoc($tms_search);
$totalRows_tms_search = mysql_num_rows($tms_search);
$colname_rsOwnerProp = "-1";
if (isset($_POST['ownerProperSearch'])) {
  $colname_rsOwnerProp = $_POST['ownerProperSearch'];
mysql_select_db($database_testdata, $testdata);
$query_rsOwnerProp = sprintf("SELECT * FROM tax_map WHERE ONAME LIKE %s", GetSQLValueString("%" . $colname_rsOwnerProp . "%", "text"));
$rsOwnerProp = mysql_query($query_rsOwnerProp, $testdata) or die(mysql_error());
$row_rsOwnerProp = mysql_fetch_assoc($rsOwnerProp);
$totalRows_rsOwnerProp = mysql_num_rows($rsOwnerProp);
mysql_select_db($database_testdata, $testdata);
$query_rsZoning = "SELECT zoning_district.zoning_district, zoning_district.Zone_description, zoning_district.`idzoning district` FROM zoning_district";
$rsZoning = mysql_query($query_rsZoning, $testdata) or die(mysql_error());
$row_rsZoning = mysql_fetch_assoc($rsZoning);
$totalRows_rsZoning = mysql_num_rows($rsZoning);
mysql_select_db($database_testdata, $testdata);
$query_rsFlood = "SELECT flood_zone.flood_zone, flood_zone.`idflood zone` FROM flood_zone";
$rsFlood = mysql_query($query_rsFlood, $testdata) or die(mysql_error());
$row_rsFlood = mysql_fetch_assoc($rsFlood);
$totalRows_rsFlood = mysql_num_rows($rsFlood);
mysql_select_db($database_testdata, $testdata);
$query_rsInspection = "SELECT * FROM inspection";
$rsInspection = mysql_query($query_rsInspection, $testdata) or die(mysql_error());
$row_rsInspection = mysql_fetch_assoc($rsInspection);
$totalRows_rsInspection = mysql_num_rows($rsInspection);
$colname_rsPermit = "-1";
if (isset($_GET['permit_id'])) {
  $colname_rsPermit = $_GET['permit_id'];
mysql_select_db($database_testdata, $testdata);
$query_rsPermit = sprintf("SELECT * FROM permit WHERE permit_id = %s", GetSQLValueString($colname_rsPermit, "int"));
$rsPermit = mysql_query($query_rsPermit, $testdata) or die(mysql_error());
$row_rsPermit = mysql_fetch_assoc($rsPermit);
$totalRows_rsPermit = mysql_num_rows($rsPermit);
$colname_rscontractor = "-1";
if (isset($_POST['conSearch'])) {
  $colname_rscontractor = $_POST['conSearch'];
mysql_select_db($database_testdata, $testdata);
$query_rscontractor = sprintf("SELECT * FROM contractor WHERE Company_Name LIKE %s", GetSQLValueString($colname_rscontractor . "%", "text"));
$rscontractor = mysql_query($query_rscontractor, $testdata) or die(mysql_error());
$row_rscontractor = mysql_fetch_assoc($rscontractor);
$totalRows_rscontractor = mysql_num_rows($rscontractor);
mysql_select_db($database_testdata, $testdata);
$query_rsWorkClass = "SELECT * FROM work_classification";
$rsWorkClass = mysql_query($query_rsWorkClass, $testdata) or die(mysql_error());
$row_rsWorkClass = mysql_fetch_assoc($rsWorkClass);
$totalRows_rsWorkClass = mysql_num_rows($rsWorkClass);
mysql_select_db($database_testdata, $testdata);
$query_rsTypeConstruction = "SELECT * FROM type_of_construction";
$rsTypeConstruction = mysql_query($query_rsTypeConstruction, $testdata) or die(mysql_error());
$row_rsTypeConstruction = mysql_fetch_assoc($rsTypeConstruction);
$totalRows_rsTypeConstruction = mysql_num_rows($rsTypeConstruction);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Permit</title>
<link rel="stylesheet" href="style/style.css" type="text/css" media="screen"/>
<script src="SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div align="center" id="mainWrapper">
<?php include_once("template_header.php");?>
<div id="pageContent">CONTENT GO HERE
  <br />
  <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
      <li class="TabbedPanelsTab" tabindex="0">Search Permit</li>
      <li class="TabbedPanelsTab" tabindex="0">Inspection</li>
      <li class="TabbedPanelsTab" tabindex="0">Add Permit</li>
<li class="TabbedPanelsTab" tabindex="0">Add Inspection</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
      <div class="TabbedPanelsContent">Permit Search:<br />
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="20%"><p>Search for Permit by:</p>
              <form id="form1" name="form1" method="get" action="<?php echo $_SERVER ['PHP_SELF'];?>">
        <p>Search TMS: <br />
        BY <br />
          TMS Number, Owners Name, Address
          <label for="TMS_search"></label>
          <input type="text" name="TMSSearch" id="TMSSearch" />
          <input type="submit" name="submitSearch" id="submitSearch" value="Submit" />
          <label for="TMSSearch"></label>
          <label for="addressSearch"></label>
        </p>
</form></td>
            <td width="80%" valign="top"><p>Search Result:</p>
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td width="18%"> </td>
                <td width="19%"> </td>
                <td width="15%"> </td>
                <td width="17%"> </td>
                <td width="16%"> </td>
                <td width="1%"> </td>
                <td width="2%"> </td>
                <td width="4%"> </td>
                <td width="4%"> </td>
                <td width="4%"> </td>
              </tr>
              <tr>
                <td><a href="#">Edit</a> | <a href="#">Add</a> | <a href="#">Delete</a> |<a href="#">Select</a></td>
                <td><?php echo $row_tms_search['permit_id']; ?></td>
                <td><?php echo $row_tms_search['TMS']; ?></td>
                <td><?php echo $row_tms_search['ONAME']; ?></td>
                <td><?php echo $row_tms_search['MADD']; ?></td>
                <td> </td>
                <td> </td>
                <td> </td>
                <td> </td>
                <td> </td>
              </tr>
            </table></td>
          </tr>
        </table>
      </div>
      <div class="TabbedPanelsContent">INSPECTION:</div>
      <div class="TabbedPanelsContent">
        <p>PERMIT:
</p>
        <form id="searchOwnProp" name="searchOwnProp" method="post" action="<?php echo $_SERVER ['PHP_SELF'];?>">
Search for Owner of Properity:
          <label for="ownerProperSearch"></label>
          <input type="text" name="ownerProperSearch" id="ownerProperSearch" />
          <input type="submit" name="button" id="button" value="Search" />
        </form>
        <form id="form3" name="form3" method="post" action="">
Search Contractors:
          <label for="conSearch"></label>
          <input type="text" name="conSearch" id="conSearch" />
          <input type="submit" name="Search" id="Search" value="Submit" />
        </form>
        <p>  </p>
        <form action=""method="post" name="form2" id="form2" >
          <table width="100%" border="0" align="center">
            <tr>
              <td colspan="2"><p>Job Site<br />
                /Physical Address
  <label for="MADD"></label>
                <input name="MADD" type="text" id="MADD" value="<?php echo $row_rsOwnerProp['GRM_LegalD']; ?>" size="60" maxlength="60" />
              </p></td>
              <td align="right">Bldg Use </td>
              <td width="41"><label for="occupancy2"></label>
                <select name="occupancy" id="occupancy2" title="<?php echo $row_rsOwnerProp['USECD']; ?>">
                  <?php
do { 
?>
                  <option value="<?php echo $row_rsOwnerProp['TMS']?>"><?php echo $row_rsOwnerProp['USECD']?></option>
                  <?php
} while ($row_rsOwnerProp = mysql_fetch_assoc($rsOwnerProp));
  $rows = mysql_num_rows($rsOwnerProp);
  if($rows > 0) {
      mysql_data_seek($rsOwnerProp, 0);
      $row_rsOwnerProp = mysql_fetch_assoc($rsOwnerProp);
?>
                </select></td>
              <td colspan="2" align="right">Zone District
                <label for="zoning"></label></td>
              <td width="144"><select name="zoning" id="zoning">
                <?php
do { 
?>
                <option value="<?php echo $row_rsZoning['idzoning district']?>"><?php echo $row_rsZoning['zoning_district']?></option>
                <?php
} while ($row_rsZoning = mysql_fetch_assoc($rsZoning));
  $rows = mysql_num_rows($rsZoning);
  if($rows > 0) {
      mysql_data_seek($rsZoning, 0);
      $row_rsZoning = mysql_fetch_assoc($rsZoning);
?>
              </select></td>
              <td width="144">Flood Zone
                <label for="flood_zone"></label>
                <select name="flood_zone" id="flood_zone">
                  <?php
do { 
?>
                  <option value="<?php echo $row_rsFlood['flood_zone']?>"><?php echo $row_rsFlood['flood_zone']?></option>
                  <?php
} while ($row_rsFlood = mysql_fetch_assoc($rsFlood));
  $rows = mysql_num_rows($rsFlood);
  if($rows > 0) {
      mysql_data_seek($rsFlood, 0);
      $row_rsFlood = mysql_fetch_assoc($rsFlood);
?>
                </select></td>
            </tr>
            <tr>
              <td width="300">Lot No.
                <input name="lotno" type="text" id="lotno" value="<?php echo $row_rsOwnerProp['LEGAL']; ?>" /></td>
              <td width="300">Block
                <label for="block"></label>
                <input type="text" name="block" id="block" /></td>
              <td width="144">Subdividion/Complex</td>
              <td colspan="2"><label for="textfield"></label>
                <input name="textfield" type="text" id="textfield" value="<?php echo $row_rsOwnerProp['SUBD']; ?>" /></td>
              <td width="60"> </td>
              <td align="right">TMS#</td>
              <td><label for="TMS"></label>
                <input name="TMS" type="text" id="TMS" value="<?php echo $row_rsOwnerProp['TMS']; ?>" /></td>
            </tr>
            <tr>
              <td>Owner of Property
                <label for="ownProp"></label>
                <input name="ownProp" type="text" id="ownProp" value="<?php echo $row_rsOwnerProp['ONAME']; ?>" size="50" /></td>
              <td>Mailing Address
                <label for="textfield2"></label>
                <input name="textfield2" type="text" id="textfield2" value="<?php echo $row_rsOwnerProp['MADD']; ?>" size="50" /></td>
              <td>City
                <label for="textfield3"></label>
                <input name="textfield3" type="text" id="textfield3" value="<?php echo $row_rsOwnerProp['CITY']; ?>" /></td>
              <td width="41" align="center">State
                <label for="textfield4"></label>
                <input name="textfield4" type="text" id="textfield4" value="<?php echo $row_rsOwnerProp['STATE']; ?>" size="2" /></td>
              <td width="99" align="center">Zip
                <label for="textfield5"></label>
                <input name="textfield5" type="text" id="textfield5" value="<?php echo $row_rsOwnerProp['ZIP']; ?>" size="6" /></td>
              <td>Phone
                <input name="textfield17" type="text" id="textfield17" size="10" /></td>
              <td align="center" valign="bottom">Fax
                <input name="textfield18" type="text" id="textfield18" size="10" /></td>
              <td>Email
                <label for="textfield25"></label>
                <input type="text" name="textfield25" id="textfield25" /></td>
            </tr>
            <tr>
              <td>Lessee of Building
                <label for="lesee"></label>
                <input name="contractor" type="text" id="contractor" size="50" /></td>
              <td width="300">Mailing Address
                <label for="textfield6"></label>
                <input name="textfield6" type="text" id="textfield6" size="50" /></td>
              <td>City
                <label for="textfield7"></label>
                <input name="textfield7" type="text" id="textfield7" /></td>
              <td align="center" valign="middle">State
                <label for="textfield8"></label>
                <input name="textfield8" type="text" id="textfield8" size="2" /></td>
              <td align="center">Zip
                <label for="textfield9"></label>
                <input name="textfield9" type="text" id="textfield9" size="6" /></td>
              <td>Phone
                <label for="textfield14"></label>
                <input name="textfield14" type="text" id="textfield14" size="10" /></td>
              <td align="center" valign="bottom">Fax
                <input name="textfield19" type="text" id="textfield19" size="10" /></td>
              <td>Email
                <input name="textfield26" type="text" id="textfield26" /></td>
            </tr>
            <tr>
              <td>Contractor
                <label for="lesee"></label>
                <input name="lesee" type="text" id="lesee" value="<?php echo $row_rscontractor['Company_Name']; ?>" size="50" /></td>
              <td>Mailing Address
                <label for="lessee_addr"></label>
                <input name="lessee_addr" type="text" id="lessee_addr" value="<?php echo $row_rscontractor['address']; ?>" size="50" /></td>
              <td>City
                <label for="textfield10"></label>
                <input name="textfield10" type="text" id="textfield10" value="<?php echo $row_rscontractor['city']; ?>" /></td>
              <td align="center">State
                <label for="textfield12"></label>
                <input name="textfield12" type="text" id="textfield12" value="<?php echo $row_rscontractor['state']; ?>" size="2" /></td>
              <td align="center">Zip
                <label for="less_zip"></label>
                <input name="less_zip" type="text" id="less_zip" value="<?php echo $row_rscontractor['zip']; ?>" size="6" /></td>
              <td>Phone
                <input name="textfield15" type="text" id="textfield15" value="<?php echo $row_rscontractor['phone_no']; ?>" size="10" /></td>
              <td align="center" valign="bottom">Fax
                <input name="textfield20" type="text" id="textfield20" size="10" /></td>
              <td>Email
                <input name="textfield27" type="text" id="textfield27" value="<?php echo $row_rscontractor['email']; ?>" /></td>
            </tr>
            <tr>
              <td>Contact
                <label for="contact"></label>
                <input name="contact" type="text" id="contact" size="50" /></td>
              <td> </td>
              <td valign="bottom">State Lic
                <label for="st_lic_nu"></label>
                <input name="st_lic_nu" type="text" id="st_lic_nu" value="<?php echo $row_rscontractor['state_lic_no']; ?>" size="11" /></td>
              <td align="center"> </td>
              <td align="center">City Lic
                <label for="cit_lic_no"></label>
                <input name="cit_lic_no" type="text" id="cit_lic_no" value="<?php echo $row_rscontractor['city_lic_no']; ?>" size="11" /></td>
              <td> </td>
              <td align="center" valign="bottom"> </td>
              <td> </td>
            </tr>
            <tr>
              <td>Architect/Engineer
                <label for="archEngineer"></label>
                <input name="archEngineer" type="text" id="archEngineer" size="50" /></td>
              <td>Mailling Address
                <label for="arch_addr"></label>
                <input name="arch_addr" type="text" id="arch_addr" size="50" /></td>
              <td>City
                <label for="textfield11"></label>
                <input type="text" name="textfield11" id="textfield11" /></td>
              <td align="center">State
                <label for="textfield13"></label>
                <input name="textfield13" type="text" id="textfield13" size="2" /></td>
              <td align="center">Zip
                <label for="arch_zip"></label>
                <input name="arch_zip" type="text" id="arch_zip" size="6" /></td>
              <td>Phone
                <input name="textfield16" type="text" id="textfield16" size="10" /></td>
              <td align="center" valign="bottom">Fax
                <input name="textfield21" type="text" id="textfield21" size="10" /></td>
              <td>Email
                <input type="text" name="textfield28" id="textfield28" /></td>
            </tr>
            <tr>
              <td>Contact
                <input name="contact" type="text" id="contact" size="50" /></td>
              <td>Email
                <label for="contact_email"></label>
                <input name="contact_email" type="text" id="contact_email" size="50" /></td>
              <td valign="bottom">State Lic
                <label for="st_lic_no"></label>
                <input name="st_lic_no" type="text" id="st_lic_no" size="11" /></td>
              <td> </td>
              <td align="center">City Lic
                <label for="city_lic"></label>
                <input name="city_lic" type="text" id="city_lic" size="11" /></td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td>Work Classification
                <label for="workClass"></label></td>
              <td><select name="workClass" id="workClass">
                <?php
do { 
?>
                <option value="<?php echo $row_rsWorkClass['idwork classification']?>"><?php echo $row_rsWorkClass['work_classification']?></option>
                <?php
} while ($row_rsWorkClass = mysql_fetch_assoc($rsWorkClass));
  $rows = mysql_num_rows($rsWorkClass);
  if($rows > 0) {
      mysql_data_seek($rsWorkClass, 0);
      $row_rsWorkClass = mysql_fetch_assoc($rsWorkClass);
?>
              </select></td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td>Description of Work:</td>
              <td colspan="7"><label for="work"></label>
                <label for="work"></label>
                <textarea name="work" id="work" cols="100" rows="5"></textarea></td>
              </tr>
            <tr>
              <td>Total Valuation
                <label for="value"></label>
                <input name="value" type="text" id="value" size="19" /></td>
              <td>Plan Check Fee
                <label for="planRevFee"></label>
                <input name="planRevFee" type="text" id="planRevFee" size="19" /></td>
              <td colspan="2">Permit Fee
                <label for="permitFee"></label>
                <input name="permitFee" type="text" id="permitFee" size="19" /></td>
              <td colspan="2" align="right">Total Permit Fee</td>
              <td><label for="total_fee"></label>
                <input type="text" name="total_fee" id="total_fee" /></td>
              <td> </td>
            </tr>
            <tr>
              <td>Date Received
                <label for="dateRec"></label>
                <input name="dateRec" type="text" id="dateRec" /></td>
              <td>Date Issued
                <label for="dateIssu"></label>
                <input type="text" name="dateIssu" id="dateIssu" /></td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td>Type Constructin
                <select name="type_construction" id="type_construction">
                </select></td>
              <td><label for="type_construction"></label></td>
              <td>Sprinkled</td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td>Contact Name
                <label for="textfield23"></label>
                <input name="textfield23" type="text" id="textfield23" size="50" /></td>
              <td valign="bottom">Phone
                <label for="textfield22"></label>
                <input name="textfield22" type="text" id="textfield22" size="10" /></td>
              <td valign="bottom">Fax
                <label for="textfield24"></label>
                <input name="textfield24" type="text" id="textfield24" size="10" /></td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
              <td> </td>
            </tr>
          </table>
        </form>
        <br />
      </div>
<div class="TabbedPanelsContent">
  <p>Inspection Request:</p>
  <form id="form3" name="form3" method="post" action=""><form action="<?php echo $editFormAction; ?>" method="post" name="form4" id="form4">
  <table align="center">
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Idinspection:</td>
      <td><input type="text" name="idinspection" value="<?php echo $row_rsInspection['idinspection']; ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Inspection_date:</td>
      <td><input type="text" name="inspection_date" value="<?php echo $row_rsInspection['inspection_date']; ?>" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Code violation_id_code_violation:</td>
      <td><input type="text" name="code_violation_id_code_violation" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Comments:</td>
      <td><input type="text" name="comments" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Employee_idemployee:</td>
      <td><input type="text" name="employee_idemployee" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Pass_failed:</td>
      <td valign="baseline"><table>
        <tr>
          <td><input type="radio" name="pass_failed" value="1" <?php if (!(strcmp($row_rsInspection['pass_failed'],1))) {echo "checked=\"checked\"";} ?> />
            Passed</td>
        </tr>
        <tr>
          <td><input type="radio" name="pass_failed" value="0" <?php if (!(strcmp($row_rsInspection['pass_failed'],0))) {echo "checked=\"checked\"";} ?> />
            Failed</td>
        </tr>
      </table></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right"> </td>
      <td><input type="submit" value="Insert record" /></td>
    </tr>
  </table>
  <input type="hidden" name="MM_insert" value="form4" />
</form>
  </form>
  <p> </p>
</div>
    </div>
  </div>
</div>
<?php include_once("template_footer.php");?>
</div>
<p> </p>
<script type="text/javascript">
var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1", {defaultTab:2});
</script>
</body>
</html>
<?php
mysql_free_result($tms_search);
mysql_free_result($rsOwnerProp);
mysql_free_result($rsZoning);
mysql_free_result($rsFlood);
mysql_free_result($rsInspection);
mysql_free_result($rsPermit);
mysql_free_result($rscontractor);
mysql_free_result($rsWorkClass);
mysql_free_result($rsTypeConstruction);
?>

You will likely have better luck and certainly better exposure posting your question here -
http://forums.adobe.com/community/dreamweaver/dreamweaver_development?view=discussions
at the Dreamweaver Application Development fourm.

Similar Messages

  • ORACLE EXPRESS: build a page with multiple forms linked to one table

    hi,
    im using oravle application express. APEX
    i would like to build a page with multiple forms linked to one table (orders) , the page has 4 from  each one with different order_id number (depending on filtering),  and if the order is prepared click yes for each order and this 'YES' should be UPDATED AND SAVED to each order number in the same table with the press of one button.
    i created all the form as (sql query)
    and create one update process
    (UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_1
    WHERE ORDER_ID =:P10_ORDER_ID_1;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_2
    WHERE ORDER_ID =:P10_ORDER_ID_2;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_3
    WHERE ORDER_ID =:P10_ORDER_ID_3;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_4
    WHERE ORDER_ID =:P10_ORDER_ID_4;
    i dont know really if i can do that, but it appear hat it actually saving according to order_id number , but not all the time some time it saved the value as "null".
    please guide me what is the correct way to do this.
    I READ THIS ONE
    http://stackoverflow.com/questions/7877396/apex-creating-a-page-with-multiple-forms-linked-to-multiple-related-tables
    BUT IT WAS FOR MULTIPLE INSERT
    thanks.

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • With the new Time Capsule does the beam forming occur with multiple clients, and do these clients have to be 802.11ac compatible?

    With the new Time Capsule 5th Gen does the beam forming occur with multiple clients, and do these clients have to be 802.11ac compatible?

    does the beam forming occur with multiple clients
    Yes, but Apple is unclear about how many cients can be connected simultaneously with this feature.
    do these clients have to be 802.11ac compatible?
    Yes

  • I have a page with multiple quicktime players on it, and want to close all other players when any of the players is started.

    I have a page with multiple quicktime players on it, and want to close all other players when any of the players is started.
    <div id="mp3-player" style="display:none;height:15px !important;float:left;margin:0px 0 15px 0px; width:270px !important;">
                           <div style="height:15px !important;width:270px !important;">
                               <embed src='http://209.15.205.3/~cityval2/MP3/352681.mp3' width="270px" height="15px" AUTOPLAY=false CONTROLLER=true LOOP=false PLUGINSPAGE="http://www.apple.com/quicktime/" />
                            </div>
                        </div>

    One key point.
    1. Migration within  the same forest ; we can say operation is cut & paste (Source account wil be not present)
    2. Migration between the forest ; we can say operation is copy  & paste ( Source account will be present)
    Also find some ADMT cool stuffs.
    ADMT Series – 1. Preparing Active Directory
    ADMT Series – 2. Preparing the ADMT Machine
    ADMT Series – 3. SID History
    ADMT Series – 4. Password Export Server
    ADMT Series – 5. Machine Preparation
    ADMT Series – 6. Service Account Migration Wizard
    ADMT Series – 7. Group Account Migration Wizard
    ADMT Series – 8. User Account Migration Wizard
    ADMT Series – 9. Merging Users with a Different sAMAccountName
    ADMT Series – 10. Security Translation Wizard – Local Profiles
    ADMT Series – 11. Computer Migration Wizard
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
    LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..

  • I keep getting the Firefox start page with Google search. How do I get my homepage back?

    When I click the Mozilla Firefox icon, instead of my homepage I get a starter page with Google search. How can I get rid of the starter page and get my homepage back?
    == This happened ==
    Every time Firefox opened
    == Started about a week and a half ago.

    Hello Linda.
    I fear your problem may be deeper than your homepage gone missing, but you can change your homepage easily by going into Tools > Options > General and entering the address you want in the "Home Page" field.
    I should warn you, however, that the version of Firefox you are using at the moment is outdated and is no longer supported. Please install the latest version for maximum speed, security and functionality. It's completely free, as always. You can get it through Firefox update service (Help > Check for updates...) or at www.getfirefox.com

  • Firefox menu bar appears- file/edit/history etc but the actual page with the search bar does not appear and is blank

    when clicking firefox icon to open the internet, all that appears are the options along the top of the page. the rest of the screen does not appear revealing the desktop picture. The firefox page with the search bar does not appear.
    http://imageshack.us/photo/my-images/214/screenshot20120303at155.png/

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Target Spry RowID on page with Multiple data sets from another page

    Hi all,
    I am trying to target a specific data item, on a page with
    multiple data sets, from a link on another page. (I also have to
    pass the link through Flash, but lets start with the simple
    part...)
    You can take a look at the site in progress here:
    http://www.3andband.com/TestSite/iframeTest3.html
    From the Home page I want to link to specific news or concert
    items on the News page
    I have been trying to get SpryURLUtils to do it but I can't
    seem to get it working.
    Any help would be greatly appreciated.
    Thanks!
    Ben

    did u try if it even passes the row value?? with a simple
    alert? alert(params.row)
    Also maby u need to reorder the scripts to this;
    <script src="../SpryAssets/SpryURLUtils.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/SpryCollapsiblePanel.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/SpryEffects.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/SpryAccordion.js"
    type="text/javascript"></script>
    and your js script
    var params = Spry.Utils.getLocationParamsAsObject();
    var dsConcerts = new
    Spry.Data.XMLDataSet("includes/concerts.xml", "Concerts/concert");
    dsConcerts.setColumnType("image", "image");
    var dsNews = new Spry.Data.XMLDataSet("includes/news.xml",
    "News/item");
    //Set an observer so that when the data is loaded, we update
    the current row to the url param value
    dsNews.addObserver({ onPostLoad: function(ds, type) {
    dsNews.setCurrentRow(params.row); }
    function MM_effectBlind(targetElement, duration, from, to,
    toggle)
    Spry.Effect.DoBlind(targetElement, {duration: duration,
    from: from, to: to, toggle: toggle});
    So url params get loaded before the data

  • Smart form problem with multiple pages & table problem

    Hi experts,
    I have a problem with my smart form with multiple pages
    Situation: I have a smart form that ALWAYS has at least 2 pages. In one page the quotation, in the second page (basically this is the 3rd page as the 2nd page is optional) the terms and conditions. Sometimes however, when there are many items in the quotation more than 1 page is needed for the quotation.
    The (optional) second page of a quotation has a different header than the first page of a quotation. So I made a second page with 2 secondary windows (where the header texts are in). The main window is after the secondary windows and has to finish the quotation.
    The problem is that my headers of the second page are never printed, it stays a blank space. The table however does continue and is printed.
    Another problem I have is that I have a table (with the quotations) with 6 columns. The first 2 columns are displayed correctly but once the 3rd column the columns are shown on a lign below.
    Regards,
    PJ

    I would suggest another approach to this problem.
    Use just one page. For the headers on the first page, use a secondary window and on the conditions tab, choose the additional event - Only on First Page.
    For the different header on the second page, create another secondary window on the same page (probably even overlapping the first header on your layout). But in this one, on the conditions tab, choose the additional event - Not on First Page.
    The table should flow as you would be using the Main window for this one.
    As for columns, if they are too wide and wont fit in the same line, it would move to the next line. So you would have to re-adjust the line width and test.
    Hope this resolves your problem.
    Regards,
    Ancy
    Edited by: abapfreak on Oct 4, 2010 11:52 AM

  • Problem updating page with multiple forms

    Hello,
    Hoping that someone can point me in the right direction. I have a single page with 2 forms, on 2 different tables. Each form region has it's own set of update buttons, generated by the wizards. However, clicking on the Create button on my second form produces an "ORA-20507 invalid column value..." for a column that exists in my FIRST form/table - and I can't figure out why. I changed the second forms button names to Create2 and Save2 and made sure that the second forms ARP was using them, but still no luck getting rid of the error.
    Any thoughts would be most appreciated.
    Loyam

    Thank you for responding!
    I did make sure that the Page Process setup for each of the tables (of type Automatic Row Processing) have the correct button assignments in the Conditional Processing region - i.e., Form1 is using the Create button, and Form2 is using the Create2 button.
    I'm starting downn the road of coding my own Insert/Update/Delete handling for Form2 based on the following thread {thread:id=3927307}
    Sounds like Apex can only handle one ARP process per page?

  • Dynamic Page with Multiple Checkboxes

    I am trying to get a dynamic page to pass the checked value of multiple checkboxes to the submit proceedure. Can anyone tell me what I am doing wrong?
    Thanks in advance,
    Pam -------------------------------------------------------------------------
    Dynamic Page:
    <HTML>
    <FORM action="scott.brsubmit" method="POST">
    <TABLE border CELLPADDING=0 CELLSPACING=0>
    <ORACLE>begin
    for c1 in (SELECT rowid,ename, job, bonus from scott.bonus_approval where approved is null)
    loop
    htp.p('<tr><td><FONT FACE= ARIAL SIZE=1>');
    htp.p(c1.ename);
    htp.p('</TD><td><FONT FACE= ARIAL SIZE=1>');
    htp.p(c1.job);
    htp.p('</TD><td><FONT FACE= ARIAL SIZE=1>');
    htp.p(c1.bonus);
    htp.p('</TD><td><FONT FACE= ARIAL SIZE=1><B>');
    htp.p('<input type="hidden" name="p_ename" value='||c1.ename||'>');
    htp.p('<input type="checkbox" name="p_cb" value="Y">');
    htp.p('</TD><td><FONT FACE= ARIAL SIZE=1><B>');
    htp.p('<input type="checkbox" name="p_cb2" value="N">');
    htp.p('</td></tr>');
    htp.p('<br>');
    htp.p('
    end loop;
    HTP.P('</table>');
    htp.p('<p>');
    htp.p('<input type=submit value="Save" name="p_action" >');
    end;
    </ORACLE>
    </form>
    </BODY>
    </HTML>
    Procedure:
    (p_ename in portal.wwv_utl_api_types.vc_arr, p_cb in portal.wwv_utl_api_types.vc_arr, p_cb2 in portal.wwv_utl_api_types.vc_arr, p_action varchar2)
    as
    begin
    if p_action = 'Save' then
    for i in 1..p_ename.count loop
    if (p_cb(i) = 'Y') then
    update scott.bonus_approval set approved = p_cb(i) where ename = p_ename(i);
    COMMIT;
    else
    if (p_cb2(i) = 'N') then
    update scott.bonus_approval set approved = p_cb2(i) where ename = p_ename(i);
    COMMIT;
    END IF;
    end if;
    end loop;
    end if;
    htp.print('<script language="JavaScript">');
    htp.print('function display() {
    var msg = "\nRecord Saved Successfully\n";
    alert(msg)');          
    htp.print('}');
    htp.print('display()');
    htp.print('</script>');
    exception
    when others then
    htp.print('<script language="JavaScript">');
    htp.print('function display2() {
    var msg = "\nRecord Not Saved.\n";
    alert(msg)');          
    htp.print('}');
    htp.print('display2()');
    htp.p('Not saved');
    htp.print('</script>');
    end;

    Hi.
    I have a dynamic page, with a bind variable :v_day. On the customization screen the user can select one or more days of the week, or all days. I use this also in a report and then it works ok. In the where clause i use:
    and rtrim((to_char(date_time,'DAY'))) IN :v_day
    Date_time is a tablecolumn (date).
    When i add this line in the select script from the dynamic page, i get error:
    : ORA-06550: line 1, column 2443:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    The symbol "(" was substituted for "" to continue.
    ORA-06550: line 1, column 2606:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    . ( ) , * @ % & - + / at mod rem <an exponent (**)> and or ||
    The symbol ")" was substituted for ";" to continue.
    ORA-06550: line 1, column 3236:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    The symbol (WWV-11230)
    Critical Error in wwerr_api_error.get_errors! SQL Error Message: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-)
    Thanks.

  • Dynamic page with multiple select in where clause

    Hi,
    I have a dynamic page and in the where-clause, i have a bind variable. In a report i use for instance
    and rtrim((to_char(date_time5,'DAY'))) IN :v_day
    That works ok in a report. But it does not work in a dynamic page.
    what code is needed to work with a multiple select box on the customize screen for a dynamic page?
    Thanks.

    Hi.
    I have a dynamic page, with a bind variable :v_day. On the customization screen the user can select one or more days of the week, or all days. I use this also in a report and then it works ok. In the where clause i use:
    and rtrim((to_char(date_time,'DAY'))) IN :v_day
    Date_time is a tablecolumn (date).
    When i add this line in the select script from the dynamic page, i get error:
    : ORA-06550: line 1, column 2443:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    The symbol "(" was substituted for "" to continue.
    ORA-06550: line 1, column 2606:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    . ( ) , * @ % & - + / at mod rem <an exponent (**)> and or ||
    The symbol ")" was substituted for ";" to continue.
    ORA-06550: line 1, column 3236:
    PLS-00103: Encountered the symbol "" when expecting one of the following:
    The symbol (WWV-11230)
    Critical Error in wwerr_api_error.get_errors! SQL Error Message: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWV-)
    Thanks.

  • UME user search with multiple search fields (AND / OR search)

    Hi,
    I'm struggling with a UME user search problem. I have multiple search fields: lastname, firstname, department
    Searching in this fields is working with the default IPrincipalSearchFilter.SEARCHMETHOD_AND (default)
    <a href="http://help.sap.com/javadocs/NW04/current/um/com/sap/security/api/IPrincipalSearchFilter.html#setSearchMethod(int)">JavaDocs SearchMethod_AND</a>
    Now I would like to add an additional search field for searching in telephone, cellphone as well. BUT searching for a phone number with searching for one of the other fields should not be a AND search. Is this possible?
    Here is the actual non-working code:
         Vector retVector = new Vector();
         //get Userdata with IUserFactory
         IResourceFactory resourceFactory = ResourceFactory.getInstance();
         IURLGeneratorService urlGen = (IURLGeneratorService)resourceFactory.getServiceFactory().getService(IServiceTypesConst.URLGENERATOR_SERVICE);
         IUserFactory userFac = UMFactory.getUserFactory();                    
         IUserSearchFilter srcFilter = null;          
         try
              srcFilter = userFac.getUserSearchFilter();
         } catch (UMException e)
              // TODO Auto-generated catch block
              e.printStackTrace();
         if(lastName.length() > 0)
              srcFilter.setLastName(lastName + "*",ISearchAttribute.LIKE_OPERATOR, false);
         if(firstName.length() > 0)
              srcFilter.setFirstName(firstName + "*",ISearchAttribute.LIKE_OPERATOR, false);
         if(department.length() > 0)
              srcFilter.setDepartment(department + "*", ISearchAttribute.LIKE_OPERATOR, false);
    //Here I need help!!!!!!! Please advice!!!
         if(telephone.length() > 0)
              srcFilter.setTelephone("*" + telephone, ISearchAttribute.LIKE_OPERATOR, false);
              srcFilter.setCellPhone("*" + telephone, ISearchAttribute.LIKE_OPERATOR, false);
         //if(mobil.length() > 0)
         //     srcFilter.setCellPhone("*" + mobil, ISearchAttribute.LIKE_OPERATOR, false);
         //Set maxium value for Result and thus limit the static variable SIZE_LIMIT_EXCEEDED
         //This method can only be used, if only one search attribute is specified -> thanks SAP
         if(srcFilter.getElementSize() <= 1)
              srcFilter.setMaxSearchResultSize(300);
         ISearchResult srcResult = null;
         try
              srcResult = userFac.searchUsers(srcFilter);
         } catch (UMException e1)
              // TODO Auto-generated catch block
              e1.printStackTrace();
    Thanks for any help...
    Stefan

    Hello,
    I could still need some help. Is there no one who could give me a tip? Could I explain my problem clearly enough or do you need some more information about my problem?
    Or is the search topic with searchFilter not a very common used thing?
    Is there a possibility to do a search in the received search result? Can anyone explain how this would work?
    Any ideas are welcome.
    Regards,
    Stefan

  • OAF page with multiple tabs

    Hi,
       We are on R12 and I am new to OAF. I developed an OAF page with 3 tabs in it. tab1 is a simple search section. where user selects search criteria and data will be displayed in a table section. There is a radio button against each resulting row. Tab2 is to display master data and Tab3 is to display/enter detail records.
    The way it works is, when user performs search and  selects a row in the search tab, and clicks on 2nd tab(master tab),  the data gets queried and displayed there and then when user clicks on the 3rd tab(details tab), then it is getting data in the details section also. There is a view link between master and details tabs.
    Now my issue is, say user searched something and chose a record in first tab, and directly clicks on 3rd tab(details tab) without clicking on the master tab, then no records are displayed...meaning the data in details section is not getting queried unless user first clicks on master tab and then detail tab.
    But my requirement is, user can click on detail tab directly after they choose a record in the search results section.
    Can anybody help me with this please....
    Note: I have only one page, one AM, and one controller.
    Thanks.

    Hi Jaya,
        Thanks for your quick response. I am new to OAF. DO you mind giving me the steps please.....
        I did specify action type as "fire partial action" and specified a method and in that method, I am setting the default where clause to get data based on the ID and doing execute query of the details VO. Still it is not working. I am assuming that what you are mentioning is something different. If so , I appreciate if you can give me the steps in detail please...thanks.

  • How do i create linked pages with multiple video clips on each of them?

    I took a bunch of small videos with my digital camera, and now want to make a dvd that has a main menu with 7 choices, and then each one of those will take you to pages with each clip as a motion button (6 to a page). So if i click on "Dublin" on the main menu, it takes me to Dublin #1 which has clips 1 - 6, i can then click on an arrow to go to a second page with clips 7 - 12, etc. I can return to the main menu and click on "Belfast" which takes me to the first page of 6 clips, then a second page with 6 more, etc.
    The problem I am having is linking two or more Chapter pages together. Thanks for your help.
    Eric

    Welcome to the forums, Eric.
    iDVD has a few limitations, but you can do much of what you want.
    Limitations: Only 6 selections per menu page. And the Forward/Backward selection buttons advance only one menu at a time.
    Basic solution: Use the folder button to create a link to a submenu; move to that submenu and drag your movies onto that menu page. Repeat for more submenus.
    Alternative approach: Use iMovie to join all the Dublin videos, with chapter markers to designate each segment. Import the movie with chapter markers into iDVD and they automatically create the Dublin submenus. And you can watch all the Dublin videos in a row, or use the menus to navigate to the desired video. After you watch the last segment, you'll automatically return to the main menu.
    John

  • Make page with multiple divs containing multiple images expand...

    Hello DW Masters,
    I am trying to get the following prototype page to expand to the width of the browser window and contract to a minimum width of 1024px while keeping the white div spacers that are seperating the images at the same proportions of 5px;
    http://stylegeneric.com/westEnd25/building_overview.htm (the page source is extremely simple right now)
    Below is the css; as you can see, I have the content set to a max width of 1024px;, what I want to do is expand the divs and the images contained in the divs on the page to the a max width of 1660 px and a proportional height that will fill a browser window that is a max of 1660px. I was struggling with this all yesterday; I've been scouring the web looking for a pure html4/css2 solution, as I can't utilize html5/css3 right now. I'm under the impression that this can not be done with just html and css - could anyone shed some light on how to accomplish this feat? I have many pages with many different layouts that I would need to implemenet. If the answer is "This can not be done.", I will accept that; I just don't want to continue chasing a white rabbit.
    Thanks so much,
    ~Chipleh
    .west25Container{
    width:1024px;
    height:429px;
    .west25Description{
    float:left;
    .west25LeftVertSpacer{
    height:429px;
    width:5px;
    float:left;
    .west25CenterSpacer{
    float:inherit;
    height:429px;
    width:5px;
    position:inherit;
    .west25HorzSpacer{
    height:4px;
    width:213px;
    .overviewImage{
    float:left;
    .overviewImage2{
    .lobbyImage{
    height:211px;
    width:213px;

    What might be quick 'n easy (in relative terms) is to open an 11 x 17 Word file.
    Then insert, size / locate images as desired.
    Now use Acrobat's PDFMaker to output the PDF file.
    Be well...

Maybe you are looking for