0

に関連する次のコードがありますtest2.php。私の問題は、メニューで選択したユーザーを一意の ID にリンクする必要があるため、URL が選択したユーザーのページになることです。問題は、ID が定義されていないことです。

そして、私には理由がわかりません!私は何を間違っていますか?から来たURL

window.location.href = '/profile.php?id='+pieces[1];

/profile.php?id=undefined

$("#course").autocomplete("/test/test2.php", {
        selectFirst: false,
        formatItem: function(data, i, n, value) {
            //make the suggestion look nice
            return "<font color='#3399CC'>" + value.split("::")[0] + "</font>";
        },
        formatResult: function(data,value) {
            //only show the suggestions and not the URLs in the list
            return value.split("::")[0];
     var username = splitItems[0];
         var id = splitItems[1];
          return username;
        }
    }).result(function(event, data, formatted) {
         //redirect to the URL in the string
    var pieces = formatted.split("::");
        window.location.href = '/profile.php?id='+pieces[1];

test2.php

<?php
mysql_connect ("****", "****","****")  or die (mysql_error());
mysql_select_db ("****");
$q = strtolower($_GET["q"]);
if (!$q) return;
$sql = "select Username, id from **** where Username LIKE '%$q%'";
$rsd = mysql_query($sql);
while($rs = mysql_fetch_array($rsd)) {
    $cname = $rs['Username'];
    echo "$cname\n";
}
?>
4

2 に答える 2

1

スクリプトに /test/test2.php を入れると、実際に test2.php が含まれて実行されるとは思いません。

これを試して

$("#course").autocomplete("<?php include '/test/test2.php'; ?>", {
于 2013-08-30T23:39:53.953 に答える
1

最初のコードでは、次のコードに置き換える必要があります。

$("#course").autocomplete("/test/test2.php", {
        delay: 0,
      selectFirst: false,
        formatItem: function(data, i, n, value) {
        //make the suggestion look nice
        var pièces = value.split("::");
              return "<font color='#000000'; font size='3pt'; font face='Arial'>" + pièces[0]  + "</font>";
        },
        formatResult: function(data,value) {
            //only show the suggestions and not the URLs in the list
        var pièces = value.split("::");

                return pièces[0];

        }
    }).result(function(event, data, formatted) {
    //redirect to the URL in the string

    var pieces = formatted.split("::");
          window.location.href = '/profile.php?id='+pieces[1];

2 番目のコードの場合

次を追加する必要があります。

$id = $rs['id'];

$cname = $rs['Username'];

この変更を次の行に追加します。

echo (utf8_encode("$cname::$id\n"));
于 2014-01-10T04:38:04.570 に答える