0
votes
0answers
43 views

Performing fulltext search with wildcards and PDO

Trying to use MySQL's MATCH AGAINST full text search where my search term is provided by jQueryUIs autocomplete widget as $_GET['term']. Furthermore, I wish to escape the term using PHP's PDO. ...
0
votes
1answer
51 views

jQuery autocomplete with MySQL and PHP results don't show up

I have a problem with the plugin in jQuery it doesn't show me any results up. I dont where I made the mistake? thats my newJob.php: <form method="post" action="newJob.php"> ...
1
vote
4answers
1k views

How to implement autocomplete functionality using PHP, jQuery and AJAX in following scenario?

I'm using PHP, Smarty, MySQL, jQuery and AJAX for my website. Now the scenario is as follows: There are three fields present on my form. The code for these three fields from smarty template is as ...
0
votes
1answer
191 views

How to use jQuery atuto complete textboxes with DataTables

I am using jQuery UI DataTables, which is working smoothly. I have about 20 odd filteration options. Some are dropdowns, some date picker and quite a few textboxes. I want to make these textboxes to ...
0
votes
0answers
320 views

JQuery UI Autocomplete PHP MySQL Dependent on another Autocomplete with Data Validation that Enables a Button or Form etc

According to my web history I have almost 1000 pages opened in the past 7 days trying to make this work. I have decided I should ask before I continue in my frustration. The goal: JQueryUI ...
0
votes
1answer
318 views

PHP code is returning HTML entities for special German characters

I cannot get my PHP 5.3 code to return exactly what I have in my MySQL (5.5) DB. I'm using jquery-ui-autocomplete (1.9.2, but it did it with 1.8.x as well) to retrieve city names. For example one ...
1
vote
1answer
456 views

how do I fill a form using jquery-ui-1.8.21.autocomplete and data from mysql

I'm successfully retrieving one field from my mysql DB using jquery-ui-autocomplete, but I need to take the user's selection from the list, re-select from the DB and fill normally more than one form ...
1
vote
5answers
591 views

load data from database instead of array

I am using a jQuery plugin Tag-it to autocomplete the tags in the form input field. The plugin loads the available tags stored in an array. $("#mytags").tagit({ availableTags: ["c++", "java", ...
5
votes
1answer
519 views

Autocomplete doesn't work properly

I want to apply "Jquery UI Autocomplete with multiple values" to one registration forms input field. What i want to do exactly: When visitor types name of existing user to this input field, first of ...