Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a code wherein I have a dropdown box which is populated by data from mysql database, itinerary/location to be specific. (e.g. London - Tokyo, Manila - Tokyo, etc.).

I also have a textbox next to it wherein the block time (no. of hours of itinerary) of a selected itinerary is shown once you select a particular itinerary. For example, the block time of itinerary London - Tokyo is 10:00:00, if you select from the dropdown the itinerary London - Tokyo, the 10:00:00 will be shown in the texbox. I have used javascript and a php file to make that work.

Here is the sample code for the dropdown and textbox called addres.php:

<html>
<body>
    <?php
    $lsql = "SELECT * FROM itinerary";
    $lresult = mysql_query($lsql);

    echo "<tr><td><font face=consolas><b>Itinerary:</b></font></td><td>
          <select name='loc' id='it'>";
    while ($lrow = mysql_fetch_array($lresult))
    {
        echo "<option value='" . $lrow['location'] . "'>" . $lrow['location'] . 
             "</option>";
    }
    echo "</select></td><td><a href=additi2.php><font face=consolas><b>Add New 
          Itinerary</b></font></a></td></tr>";

    echo "<tr><td><font face=consolas><b>Block Time:</b></font></td><td>
         <input type=text name=btime id='bt' readonly=readonly /></td></tr>";  
    ?>

    <div id="empDiv"></div>
</body>
</html>

And the javascript new.js:

function connectsample(var1) {
    $.post("add-method.php",{
       vCase: var1,
       location: $("#it").val()},
       function(data){ 
           $("#empDiv").html(data); 
       });
    }

    function itinerary(vCase, data) {
        if(vCase == "clickData") {
             $("#bt").val(data);
        }
    }

    $(document).ready(function() {
        $("#it").change(function() {
            connectsample("itinerary");
        });
    }); 

I have another php file where it does the populating of the data called add-method.php:

<?php
require("aacfs.php");
$class=$_POST['vCase'];
$location=$_POST['location'];

if($class=="itinerary") {
    $asql = "SELECT * FROM itinerary where location='$location'";
    $aresult = mysql_query($asql);
    $arow = mysql_fetch_array($aresult);
    $btime=$arow['btime'];

    echo "<script type=\"text/javascript\">";
    echo "itinerary(\"clickData\",\"$btime\");";
    echo"</script>";
}
?>

I connect those 3 files in order to make it work. So that I don't have the click the submit button just to show the block time for a particular itinerary and so that when I hit the submit button, the itinerary and block time will be shown.

My problem is, I have to generate a new dropdown and textbox which do the same process if the user wants to add another itinerary by clicking a button and save the new itineary along with the previous one.

I don't know how should I save multiple itineraries at once to mysql database and also I don't have any idea on how to generate new dropdown and texbox and to get their values.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.