(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
|
php
$link = mysql_connect ("xxxxxxxxx", "xxxxxxxxx", "xxxxxxxxxx ");
jeżeli (! $link)
{
kostka do gry ("Móc: ". mysql_error ());
}
jeżeli (! mysql_select_db ("xxxxxxxxxx "))
{
wyjście;
}
$text = mysql_real_escape_string ($_GET ["tekst"]);
$sql = "WYBRANY id, najpierw OD klient DOKĄD najpierw JAK "%". $text. "%" OGRANICZENIE 5";
$result = mysql_query ($sql);
podczas gdy ($row = mysql_fetch_assoc ($result))
{
$posts [] = szyk ($row ["id"] => $row ["pierwszy"]);
}
echowy json_encode ($posts);
mysql_close ($link);
? >
|