Jump to content

shield1948

New Members
  • Posts

    3
  • Joined

  • Last visited

shield1948's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Thanks mac_gyver. I've already did that... but I know what the problem was. Basically I just needed to store the data in the unavailableDates array. I did that yesterday but I forgot to change the date format (from yyyy-mm-dd to dd-mm-yyyy). Now it works fine. One little problem left, I need to click twice on datepicker in order to show the unavailable dates... Does anyone know why? :/
  2. Hello, I'm trying to retrieve dates from the database based on a selection. If a user selects singer A for example, then I'm going through the database and get the unavailable dates of singer A. var unavailableDates; function unavailable(date) { dmy = date.getDate() + "-" + (date.getMonth() + 1) + "-" + date.getFullYear(); if ($.inArray(dmy, unavailableDates) == -1) { return [true, ""]; } else { return [false, "", "Unavailable"]; } } $(document).ready(function() { $("#datepicker").datepicker({ dateFormat: 'yy-mm-dd', beforeShowDay: unavailable, minDate: 0, firstDay: 1, // rows starts on Monday changeMonth: true, changeYear: true, showOtherMonths: true, selectOtherMonths: true, altField: '#date_due', altFormat: 'yy-mm-dd' }); $('#datepicker').focus(function(){ //alert($('#name').html()); $.ajax({ url: 'getDates.php', data: "artist_id="+$('#name').html(), dataType: 'json', success: function(data) { alert(data) } }); }) }); Everything works fine. Using the "getDates.php" I retrieved the dates and pass them through the function. But how can I pass the data (after success: function) to the unavailable dates above? I have the dates from database but I don't know how to link them with the array "unavailableDates" (line 1) in order to show unavailable dates in datePicker.
  3. Hello guys, I've added a search bar in my website using php and javascript. It selects data from database according to your search input and then it displays the results. That works just fine but when the user select one of the resulted options I want to put the value of the specific option in the textbox or below so I can have access to it. So if for example someone will search the word "Car", when they click the word I just want to get the value like we normally do in PHP ( $car = $_POST['car']; ). Is there any way I can do it? main.php <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script type="text/javascript" src="scripts/jquery-1.3.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("#SearchInput").focus(function() { if($("#SearchInput").val() == "Car Search") { $("#SearchInput").val(""); } }); $("#SearchInput").blur(function() { if($("#SearchInput").val() == "") { $("#SearchInput").val("Car Search"); } $("#SearchResults").slideUp(); }); $("#SearchInput").keydown(function(e) { if(e.which == { SearchText = $("#SearchInput").val().substring(0, $("#SearchInput").val().length-1); } else { SearchText = $("#SearchInput").val() + String.fromCharCode(e.which); } $("#SearchResults").load("retrieveCar.php", { SearchInput: SearchText }); $("#SearchResults").slideDown(); }); }); </script> </head> <body> <table> <tr> <td><div id="SearchBox"><input id="SearchInput" name="SearchInput" value="Car Search"/></div></td> <td><div id="SearchButton"><input type="image" src="images/left.png" /></div></td></tr> <tr><div id="SearchResults"></div> </tr> </table> retrieveCar.php <?php $dbc = @mysql_connect ('localhost','root@localhost',''); // Select the database. mysql_select_db ('model'); if(isset($_POST['SearchInput'])) { $SearchInput = strtolower($_POST['SearchInput']); $Cars = mysql_query('select * from Cars where car_name like "%'.$SearchInput.'%"'); while($Car = mysql_fetch_assoc($Cars)) { $Name = utf8_encode($Car['car_name']); $Name = str_replace($SearchInput, '<span class="highlight">'.$SearchInput.'</span>', $Name); $Name = str_replace(ucfirst($SearchInput), '<span class="highlight">'.ucfirst($SearchInput).'</span>', $Name); echo '<a href="">'.$Name.'</a>'; } } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.