guif Posted February 2, 2009 Share Posted February 2, 2009 I have problems with my Autosuggest project. I don't know to detect which is the value that I click. In my index.php i have this: <div id="search-wrap"> Seach values:<br> <input name="search-q2" id="search-q2" type="text" onkeyup="javascript:autosuggest2()" value="write a value...."/> <br><br> </div> To search the values i have the file "seach_values.php" and i have this: <?php $searchq = strip_tags($_GET['q']); $getRecord_sql = "select pkey from TABLE where project = '10000' and pkey like '%".$searchq."%'"; $getRecord = mysql_query($getRecord_sql); if(strlen($searchq)>0){ echo '<ul>'; while ($row = mysql_fetch_array($getRecord)) { ?> <li><a href="lib/consultas.php?accion=E" onclick="load('lib/consultas.php?accion=E','consulta');return false;"> <?php echo $row['pkey']; ?> </a> </li> <?php }echo '</ul>'; } ?> This is correct, because i see the results when i write into my input box. But, when I click into one value (into <li>) the results all times are: "Query was empty" I put the case "E" from "consultas.php": case 'E': echo "<br>"; echo my value is....; echo "<br>"; echo $which is the value I clicked??????; echo "<br>"; Quote Link to comment https://forums.phpfreaks.com/topic/143466-problems-with-my-autosuggest-project/ Share on other sites More sharing options...
guif Posted February 2, 2009 Author Share Posted February 2, 2009 now, if i change this line: <li><a href="lib/consultas.php?accion=E" onclick="load('lib/consultas.php?accion=E','consulta');return false;"> and put: <li><a href="lib/consultas.php?accion=E[b]&<?php echo $row['pkey']; ?>[/b]" onclick="load('lib/consultas.php?accion=E','consulta');return false;"> I see the item of <li> name into the link but if i make a click, the echo don't give any result... help.... Quote Link to comment https://forums.phpfreaks.com/topic/143466-problems-with-my-autosuggest-project/#findComment-752698 Share on other sites More sharing options...
guif Posted February 4, 2009 Author Share Posted February 4, 2009 Now, I see the element!!! I change this: <li><a href="lib/consultas.php?accion=E" onclick="load('lib/consultas.php?accion=E','consulta');return false;"> for: <li><a href="lib/consultas.php?accion=E" onclick="load('lib/consultas.php?accion=E[b]&id=<?php echo $row['pkey']; ?>[/b]','consulta');return false;"> if I put in case E: echo $_GET['id']; I see the element that i Clicked. but... i would like to insert a MySQl query: $queEmp = "select pkey, UPDATED, reporter, resolution, summary from `jiraissue` where pkey like $_GET['id']"; why did not run? Quote Link to comment https://forums.phpfreaks.com/topic/143466-problems-with-my-autosuggest-project/#findComment-754283 Share on other sites More sharing options...
guif Posted February 4, 2009 Author Share Posted February 4, 2009 I have the solution! At first, I put: $valor = $_GET['id']; and the query: $queEmp = "select pkey, UPDATED, reporter, resolution, summary from `jsue` where pkey like '$valor'"; thanks!!! Quote Link to comment https://forums.phpfreaks.com/topic/143466-problems-with-my-autosuggest-project/#findComment-754309 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.