Validate Menu List in form.

I was wondering if there is a way to validate a menu or list in a form. ie. at http://www.metrobham.org/register.html I would like to at least make the "Choose One" menu/list a required field as well as the "Age" and "Gender" fields.
Thanks

You can do it quickly and simply with javascript before the information is sent to your php processing script. I've validated the 'Choose One' select, the 'Gender' radio buttons and the 'Age' select. You can do the rest if you want but you will have to look at the code and see how it works. It's not that difficult when you see the pattern forming.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<!-- VALIDATE FORM  -->
<script type="text/javascript">
<!--
function validateForm() {
var choose = document.forms.form1.choose.value;
// inform customer to provide their requirements
if (choose == null || choose == "" || choose == "Please Choose")
alert("Please choose from list provided");
return false;
var age = document.forms.form1.age.value;
// inform customer to provide their age
if (age == null || age == "" || age == "Select Age")
alert("Please select Age");
return false;
// inform customer to provide their gender
if(document.getElementById('gender_0').checked) {
} else if(document.getElementById('gender_1').checked) {
} else {
  alert ("You must select a Gender");
  return false;
} // end function
-->
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="registration.php" onsubmit="return validateForm()">
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="27%" align="right"><label for="choose">Choose One:</label></td>
        <td width="73%" align="left"><select name="choose" id="choose">
          <option value="Please Choose" selected="selected">Please Choose</option>
          <option value="baptism">Baptism</option>
          <option value="baby dedication">Baby Dedication</option>
          <option value="new member">New Member</option>
        </select></td>
      </tr>
      <tr>
        <td align="right"><label for="name2">Name:</label></td>
        <td align="left"><input name="name" type="text" id="name2" size="40" /></td>
      </tr>
      <tr>
        <td align="right"><label for="address">Address:</label></td>
        <td align="left"><input name="address" type="text" id="address" size="45" /></td>
      </tr>
      <tr>
        <td align="right"><label for="city">City:</label></td>
        <td align="left"><input name="city" type="text" id="city" size="35" /></td>
      </tr>
      <tr>
        <td align="right"><label for="state">State:</label></td>
        <td align="left"><input name="state" type="text" id="state" size="25" /></td>
      </tr>
      <tr>
        <td align="right"><label for="zip">Zip:</label></td>
        <td align="left"><input name="zip" type="text" id="zip" size="5" /></td>
      </tr>
      <tr>
        <td align="right"><label for="phone">Phone:</label></td>
        <td align="left"><input name="phone" type="text" id="phone" size="12" /></td>
      </tr>
      <tr>
        <td align="right"><label for="email">Email:</label></td>
        <td align="left"><input name="email" type="text" id="email" size="50" /></td>
      </tr>
      <tr>
        <td align="right"><label for="age">Age (if Child):</label></td>
        <td align="left"><select name="age" id="age">
          <option value="Select Age" selected="selected">Select Age</option>
          <option value="1">1</option>
          <option value="2">2</option>
          <option value="3">3</option>
          <option value="4">4</option>
          <option value="5">5</option>
          <option value="6">6</option>
          <option value="7">7</option>
          <option value="8">8</option>
          <option value="9">9</option>
          <option value="10">10</option>
          <option value="11">11</option>
          <option value="12">12</option>
          <option value="13">13</option>
          <option value="14">14</option>
          <option value="15">15</option>
          <option value="16">16</option>
          <option value="17">17</option>
          <option value="18">18</option>
          <option value="19">19</option>
        </select></td>
      </tr>
      <tr>
        <td align="right">Gender:</td>
        <td align="left"><p>
          <label>
            <input type="radio" name="gender" value="male" id="gender_0" />
            Male</label>
          <br />
          <label>
            <input type="radio" name="gender" value="female" id="gender_1" />
            Female</label>
          <br />
        </p></td>
      </tr>
      <tr>
        <td align="right"><label for="comments">Comments:</label></td>
        <td align="left"><textarea name="comments" id="comments" cols="45" rows="5"></textarea></td>
      </tr>
      <tr>
        <td align="right"><input type="reset" name="clear" id="clear" value="Reset Form!" /></td>
        <td align="left"><input name="submit" type="submit" id="submit" onclick="MM_validateForm('name2','','R','address','','R','city','','R','state','','R','zi p','','R','phone','','RisNum','email','','RisEmail');return document.MM_returnValue" value="Submit" /></td>
      </tr>
    </table>
  </form>
</body>
</html>

Similar Messages

  • Validate from list (Oracle Forms)

    Hi all,
    Does anybody know, how to simulate "Validate from List" functionality from the oracle forms with JDeveloper 10.1.3.
    The case is for example (Empl, Dept), I want to create a table for the empl showing the empl info plus department name and allow the user assign the empl to a given department using only the name and not the department id.
    Many thanks in advance.
    Edited by: user5772728 on Feb 20, 2009 8:56 AM

    Hi,
    there is no list validator like this I am aware of.
    Frank

  • My form pages menu/list pull down items aren't legible in Firefox

    I'm using the form item - menu/list - set to menu.  It looks great in safari, but in firefox the list of items are scrunched together and not legible.  How can this be avoided or styled?

    Please when asking for help provide a link so that people can see the result and the code.  Otherwise it is just a big guessing game.
    Gary

  • Forms 6i: Dynamically set Validate from List property

    Hi,
    Is there any API to set the VALIDATE FROM LIST property for an item with an LOV in Forms 6i?
    Thanks

    you can use set_item_property to do that dynamically. Look in the help for the values of the built-in

  • How to validate a list form?

    Hi All,
    My requirement is simple, I need to validate a simple list form with some set of conditions.
    So decided to deploy application pages and use the code behind to apply the conditions and map the application page to Edit/New form of the list. Can this be done and any references?
    Thanks.

    Hi,
    Per my understanding, you might want to validate a list form with custom conditions.
    If the validation can be achieved by using client side technology such as JavaScript, a suggestion is that you can customize the built-in NewForm/EditForm
    of the list and implement your validation there.
    It is also a good choice to create a custom application page in this scenario, we can write C# code for the validation and handle the form submission.
    About
    how to create custom application page:
    https://msdn.microsoft.com/en-us/library/ee231557.aspx?f=255&MSPPError=-2147217396
    https://msdn.microsoft.com/en-us/library/ee231581.aspx
    For the data accessing part, you can use SharePoint Object Model:
    Add, Update and Delete List Items Programmatically in SharePoint
    http://www.mindfiresolutions.com/Add-Update-and-Delete-List-Items-Programmatically-in-Sharepoint-372.php 
    More information about
    SharePoint Object Model:
    http://msdn.microsoft.com/en-us/library/ms473633.ASPX
    Best regards
    Patrick Liang
    TechNet Community Support

  • Using a Menu List to dynamically set text

    Hi,
    I want to create a menu list and depending on the selected
    element in the list, set some related text in a variety of
    different text fields. I've been looking at the various behaviours
    available on a menu list and I've noticed the attribute
    spry:selected as well both of which look relevant.
    I've been trawling the web to find some guidance but so far
    haven't found much. I guess I'm looking for some general guidance
    on best practice for achieving this. If anyone can point me in a
    good direction that would be great.
    Wisdom greatfully received.
    Chris

    Let's see your form. Tell us what you are trying to set and
    which field you
    are trying to affect.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "cjdanson" <[email protected]> wrote in
    message
    news:gpmn85$1hn$[email protected]..
    > Hi,
    >
    > I want to create a menu list and depending on the
    selected element in the
    > list, set some related text in a variety of different
    text fields. I've
    > been
    > looking at the various behaviours available on a menu
    list and I've
    > noticed the
    > attribute spry:selected as well both of which look
    relevant.
    >
    > I've been trawling the web to find some guidance but so
    far haven't found
    > much. I guess I'm looking for some general guidance on
    best practice for
    > achieving this. If anyone can point me in a good
    direction that would be
    > great.
    >
    > Wisdom greatfully received.
    >
    > Chris
    >

  • Multiple Menu List Selection question.

    In a form I have a multiple select list that's populated dynamically from a table, e.g. label = full name, value = name_id. I need to be able to insert both label and value into another table. Normally, selecting a label will insert the value, but what technique (short example, please) can I use to extract the label itself as well as it's value from the list?
    Thanks!

    Hi there,
    If you are prepared to consider a commercial solution then
    you might
    like to take a look at the WebAssist extension "Database
    Search"
    To learn more about this extension please visit the web
    address I have
    included below:
    http://www.webassist.com/professional/products/productdetails.asp?PID=72
    You might also like to consider our Dynamic dropdowns
    solution. To learn
    more about this product, take a look at this URL:
    http://www.webassist.com/professional/products/productdetails.asp?PID=1
    Feel free to contact me off list, if you would like to learn
    more about
    either of these or any other WebAssist software.
    Regards,
    Mark
    Mark Fletcher
    WebAssist.com
    MacPMH wrote:
    > Hi All,
    >
    > I am looking for a dreamweaver and/or PHP/MySQL tutorial
    and/or extension
    > and/or tool that can walk me through creating an
    advanced search page. For
    > example, I have multiple search criteria which allow
    users to select various
    > criteria:
    >
    > Menu/list #1 (Allows multiple)
    > Option 1, 2, 3?25
    >
    > Menu/list #2 (Allows multiple)
    > Option 1, 2, 3?50
    >
    > Menu/list #3 (Allows multiple)
    > Option 1, 2, 3?10
    >
    > Radio button (allows user to select the way the
    information is displayed)
    > By Date
    > By State
    > By Score
    > By whatever?
    >
    > Drop down (allows user to select how many records to
    display)
    > View 25
    > View 50
    > View 75
    > View 100
    > View ALL
    >
    > Any comments and suggestions would be greatly
    appreciated. BTW, I consider
    > myself a step above the beginner level - could consider
    myself an intermediate
    > user of Dreamweaver, PHP/MySQL so please be gentle
    >
    >

  • Open PDF from menu/list box?

    I would like to be able to have site visitors view a list of
    PDF's in a menu/list box and then be able to open the PDF they
    select. Now, I have the menu box in a form. Selecting a PDF, then
    clicking the forms submit button, brings up another form. the
    second form shows the record (the PDF which was selected) - and
    clicking the submit button brings up the PDF. I would like it to be
    a one-click process versus what I have now.
    I don't know what code to palce for the 'action' attached to
    the first submit button.
    I would appreciate any help. I am using ASP js.
    Thanks

    You still need to have a single action on the first form to
    handle the
    selection but what I would do is send it to a page and use a
    Response.Redirect to send them to the write page. The
    following is vb script
    by you should be able to convert it to js.
    <%
    dim gotoPDF
    gotoPDF = request.form("SelectName")
    Response.Redirect gotoPDF
    %>
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "MontanaBill" <[email protected]> wrote in
    message
    news:f3sb74$fm7$[email protected]..
    >I would like to be able to have site visitors view a list
    of PDF's in a
    > menu/list box and then be able to open the PDF they
    select. Now, I have
    > the
    > menu box in a form. Selecting a PDF, then clicking the
    forms submit
    > button,
    > brings up another form. the second form shows the record
    (the PDF which
    > was
    > selected) - and clicking the submit button brings up the
    PDF. I would
    > like it
    > to be a one-click process versus what I have now.
    > I don't know what code to palce for the 'action'
    attached to the first
    > submit
    > button.
    > I would appreciate any help. I am using ASP js.
    > Thanks
    >

  • Validate from list problem

    I have a form in which i have a non-database item.I attached a LOV to it and have set the validate from list to yes..
    but in enter-query mode the list is not getting shown when the value is typed(ie the lov is not shown when the user enters wrong value.validation is not hapenning)
    i have even written key-listval.inside which i have given list_values still the LOV is not shown
    Any suggestions to get the LOV???

    Hi,
    You can try to use the when validate-item trigger, which executes when the cursor navigates out of an item, this happens when user press the tab key to navigate to the next item or when clicking in a different item.
    Validate from LOV works without any additional code when the form is in normal mode.
    When the form is in enter-query mode this won't work, try the key-next-item trigger instead.
    check out the forms online help section:
    "About defining triggers to fire in Enter Query mode" for more info.
    Regards,
    Hugo

  • Validate from list behavior ? help needed

    Hi,
    I have an item whith a lov attached to and the proerty of the lov is validate from list = yes.
    But when a create a record and type the begining of the words eg Jean then when i do key-list-val or F9 the lov returns me all the rows and.
    And when i press enter in the field then the lov shows with Jean% and show me only the names beginning with Jean.
    Why does it only happen when i press enter and not when doing F9?
    Should it not be the same behavior ?
    Thanks in advance.
    PS: it is quite urgent !
    Jean-Yves

    Hi ,
    When you enters a wrong value into a "Validate from List" Item and hit <ENTER> then validation to make sure that the entered value exists within the List and if it is not there , then the forms engine filters the Shows values as the value entered into the Item as helping you to select from the List cause you have entered ambigious Choise and in case no matched entries it display all the list , but in case you display the LOV normally this means you are trying to select a value then no Pre Serach happened unless you specify (Filter Before Display = true) on the LOV properties ,
    Best Regards,

  • Validate from List Property

    i created a form and used validate from list property to TRUE for a particluar item which have LOV.But when table hav too many rows (here i hav 18000 rows) getting too slow....Is this problem is common...? If any one hve any idea about this Please help me...
    Edited by: pms on Sep 11, 2011 10:31 PM

    But when table hav too many rows (here i hav 18000 rows) getting too slow....Is this problem is common...? Yes, this is common when you have a lot of rows returned by your LOV query. In situations like this, it is best to try and reduce the size of the data returned by your LOV. One way of doing this is to enable the Filter Before Display property on the LOV. When enabled, it causes Forms to display a query criteria dialog before displaying the LOV. This too can cause slowness because this option could cause a full table scan to occur. Perhaps a better option would be to make your LOV dependent on other limiting values. For example, if your Form showed a list of all employees in a company you could make your user select limiting data like a department number to help reduce the number of employee records returned by your LOV.
    Craig...

  • Menu/List Dreamweaver

    Hi guys,
    I have a table called agents I want to show the name of the agents in a menu in order to select one agent from that list.
    I added in a form the menu/list and added the value dynamically with a recordset, I have 14 items in that table but the menu/list is only showing 10.
    I would like to show the name of all the 14 agents.
    This is the code dreamweaver is generating, do I need to add something there?
    <select name="agente" id="agente">
                    <?php
    do { 
    ?>
                    <option value="<?php echo $row_nombreagenteingresar['nombre']?>"<?php if (!(strcmp($row_nombreagenteingresar['nombre'], $row_nombreagenteingresar['nombre']))) {echo "selected=\"selected\"";} ?>><?php echo $row_nombreagenteingresar['nombre']?></option>
                    <?php
    } while ($row_nombreagenteingresar = mysql_fetch_assoc($nombreagenteingresar));
      $rows = mysql_num_rows($nombreagenteingresar);
      if($rows > 0) {
          mysql_data_seek($nombreagenteingresar, 0);
           $row_nombreagenteingresar = mysql_fetch_assoc($nombreagenteingresar);
    ?>
                </select>
    Regards,

    Looks like you either...
    1. Haven't uploaded the re4.jpg image
    2. Uploaded it to the wrong location (the link says it should be in your site root)
    3. Uploaded the image with the wrong name (RE4.jpg and re4.jpg are the same on your local system, but on a server they're separate files)
    Actually, #3 is true, I found the image as RE4.jpg, but the link is to re4.jpg
    To avoid this in the future, make sure your files all use lowercase, alpha-numeric names. Avoid using spaces (use hyphens and underscores instead) and avoid special characters like #&$ all together.

  • LOV validate from list

    Hello there,
    What factors can be performed for don't validating from list, when having a text item conected by a botton which calls the LOV?
    My problem is that I conect properly the text item to the LOV and the LOV to the Record group. At the text item's properties palette, i put YES when asking if validate from list. However, in an enter-query mode, when i insert 'AAA' into the text item, and change the focus, the LOV doesn't appear.
    Why?
    Thanks to everyone who helps me.
    Sorry for my english, i am spanish.

    Those other forms use a different form of querying. They probably never go into Enter Query mode, and instead simply query with a where clause something like:
        WHERE column_1 = :control_block.item_1 and...
    All the forms I write use that format. The user is never allowed to do an Enter Query. They simply enter the control block values (which may or may not have an LOV attached), and then press the Query button.

  • PHP: Dynamic Menu/List

    I have a database that has a bunch of locations and I have
    created a page using PHP that has a Dynamic Menu/list that pulls
    the locations. Users have the option to select a location and
    perform a search returning information. My problem is, I want to
    create an option "Search All Locations." I have tried every special
    character that I can think of and all results bring back nothing. I
    am using Dreamweaver 8. I have pasted some of my code below:
    <form id="form1" name="form1" method="get"
    action="resultslocations.php">
    <label></label>
    <p>
    <label>
    <select name="neighborhood_list"
    id="neighborhood_list">
    <option value=""%"">Search by
    Neighborhood</option>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_Location['Location']?>"><?php echo
    $row_Location['Location']?></option>
    <?php
    } while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    </select>
    </label>
    </p>
    <p>
    <label>
    <input name="neighborhood_submit" type="submit"
    id="neighborhood_submit" value="Submit" />
    </label></p>
    </form>

    Here's the code again, it seems it was cut off.
    <?php
    require_once('../../Connections/ResturantsDatabase.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "", $theNotDefinedValue = "")
    $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;
    mysql_select_db($database_ResturantsDatabase,
    $ResturantsDatabase);
    $query_Location = "SELECT Location FROM Locations ORDER BY
    Location ASC";
    $query_LocationFindAll = "Select * FROM Locations ORDER by
    Location ASC";
    $resultalllocations=mysql_query($query_LocationFindAll);
    $Location = mysql_query($query_Location, $ResturantsDatabase)
    or die(mysql_error());
    $row_Location = mysql_fetch_assoc($Location);
    $totalRows_Location = mysql_num_rows($Location);
    mysql_select_db($database_ResturantsDatabase,
    $ResturantsDatabase);
    $query_Cuisine = "SELECT * FROM Cuisine ORDER BY Cuisine
    ASC";
    $Cuisine = mysql_query($query_Cuisine, $ResturantsDatabase)
    or die(mysql_error());
    $row_Cuisine = mysql_fetch_assoc($Cuisine);
    $totalRows_Cuisine = mysql_num_rows($Cuisine);
    ?><!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=iso-8859-1" />
    <title>Wigz Menu Venu Homepage</title>
    <script src="../../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <style type="text/css">
    <!--
    body {
    background-image:url(../images/background.jpg);
    background-repeat:repeat-x repeat-y;
    background-position:top left;
    a:link {
    color:#FFFFFF;
    text-decoration:none;
    </style>
    <link href="navigation_menu_class.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <table width="70%" height="522" align="center"
    bgcolor="#FFFFFF">
    <tr>
    <td height="206" colspan="2" valign="top"><div
    align="center">
    <table width="100%" border="0">
    <tr>
    <td width="80%"><div align="left"><img
    src="../images/logo2.png" width="613" height="192" alt="Wigz Menu
    Venue Logo" /></div></td>
    <td width="20%" align="right" valign="top"><img
    src="../images/menu2.jpg" alt="menu2" width="277"
    height="201"/></td>
    </tr>
    </table>
    </div></td>
    </tr>
    <tr>
    <td width="20%" height="270" valign="top"
    background="../images/menu_back.jpg"><div id="navigation">
    <ul>
    <li><a href="search.php">Browse
    Menus</a></li>
    <li><a href="#">Home</a></li>
    <li><a
    href="advertise.php">Advertise</a></li>
    <li><a
    href="recommendations.php">Recommendations</a></li>
    <li><a href="media.php">Media
    Kit</a></li>
    <li><a href="map.php">Site
    Map</a></li>
    <li><a href="about.php">About
    Us</a></li>
    <li><a href="contact.php">Contact
    Us</a></li>
    </ul>
    </div></td>
    <td width="80%" valign="top"><table width="100%"
    border="0" background="../images/background.jpg">
    <tr>
    <td width="50%"><div id="browsebyheaders">Browse
    by Neighborhood</div></td>
    <td width="50%"><div id="browsebyheaders">Browse
    by Cuisine </div></td>
    </tr>
    </table>
    <table width="70%" border="0" align="center">
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td colspan="2"><font size="+2"><b>Wigz
    Menu Venu.com </b></font> is your one-stop-shop to
    locate resturants, menus, and bars in the Arlington, VA region.
    Here you will be able to find your favorite resturant's contact
    information along with viewing or downloading their current menu.
    To begin your search, select one of the two search options below.
    You may search by neighborhood or by food cuisine. </td>
    </tr>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    <tr>
    <td width="50%"><div align="center">
    <form id="form1" name="form1" method="get"
    action="resultslocations.php">
    <label></label>
    <p>
    <label>
    <select name="neighborhood_list"
    id="neighborhood_list"></label>
    <option value=""SearchALL""><Search by
    Neighborhood></option>
    IF (option value=="SearchALL")
    {<?php echo$resultalllocations ?>
    while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    <?php
    do {
    ?>
    <option value="<?php echo
    $row_Location['Location']?>"><?php echo
    $row_Location['Location']?></option>
    <?php
    } while ($row_Location = mysql_fetch_assoc($Location));
    $rows = mysql_num_rows($Location);
    if($rows > 0) {
    mysql_data_seek($Location, 0);
    $row_Location = mysql_fetch_assoc($Location);
    ?>
    </select>
    </label>
    </p>
    <p>
    <label>
    <input name="neighborhood_submit" type="submit"
    id="neighborhood_submit" value="Submit" />
    </label></p>
    </form>
    </div></td>
    <td width="50%"><div align="center">
    <form id="form2" name="form2" method="get"
    action="resultscuisine.php">
    <label>
    <select name="cuisine_list" id="cuisine_list">
    <option value="'Cuisine'LIKE'*'">Search by
    Cuisine</option>
    <?php
    do {
    ?><option value="<?php echo
    $row_Cuisine['Cuisine']?>"><?php echo
    $row_Cuisine['Cuisine']?></option>
    <?php
    } while ($row_Cuisine = mysql_fetch_assoc($Cuisine));
    $rows = mysql_num_rows($Cuisine);
    if($rows > 0) {
    mysql_data_seek($Cuisine, 0);
    $row_Cuisine = mysql_fetch_assoc($Cuisine);
    ?>
    </select>
    </label>
    <label>
    <br />
    <br />
    <input name="cuisine_submit" type="submit"
    id="cuisine_submit" value="Submit" />
    </label>
    </form>
    </div></td>
    </tr>
    </table>
    <p> </p></td>
    </tr>
    </table>
    <blockquote> </blockquote>
    </body>
    </html>
    <?php
    mysql_free_result($Location);
    mysql_free_result($Cuisine);
    ?>

  • I am getting error while attaching Menu Module to FORM

    Hi to everyone, I have created a Menu Module(mmx file), now i am trying to attach that menu to a FORM, I have entered the proper Menu Module address in the property window of that FORM, but i am continously facing the following problem.
    FRM-40738: Argument 1 to builtin CALL_FORM cannot be null
    Also i have applied following code in that Menu Module
    call_form('F:\Database Files\Contingent Database\Forms & Reports\Forms\BILL DETAIL.fmx');
    but the required FORM is not running.
    Please help me to sove out this problem

    I did this today, in this way,
    I create the menu then CRT-SHIFT K, then CRT -T
    then check you have the mmx
    - now you put full path to the form
    Menu module like c:\aaa\bb\menuname
    I did not put extension
    Hope this will work.

Maybe you are looking for

  • How to display different text for labels in Group Above Report Oracle Repor

    Hello, Is there a way to change the text that is displayed in Labels in a Group Above Report? For example, I have a Group Above report with my columns of data and above the columns I have my column labels, but I would like to be able to display vario

  • Page is not displaying correctly on mobile

    Hey. Can anyone help me to see why my page is not displaying correctly on mobile. www.highestgoodclothing.com/phone/videos.html The page displays correctly on a desktop. On mobile there is a right margin that I do not want there. All of my other mobi

  • Jstl.jar and standard.jar in NetBeans

    how can i put jstl.jar, standard.jar in library folder and how can i run that in same ide???

  • Deployment is taking very long time

    Hi I have a 1GB RAM and 3 Mhz PC and my server is having 8 GB RAM. Im trying to deploy a mapping but it is taking a very long time more than 48 hours to deploy. The Mapping contains 2 tables with 20 data rules each. If i disabled this data rules then

  • XferCommand with prozilla, how to make it smarter

    Hi. I use this XferCommand in my pacman.conf: XferCommand =/usr/bin/printf 'Downloading ' && echo %u && /usr/bin/proz  -k=16  -r --no-curses --no-netrc  --no-getch  %u It is supper fast, but it is unable to understand that, for example, "Core is up t