Jump to content

jraede

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jraede's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. You can run a PHP script in the background by using AJAX. jQuery offers some great AJAX functions that you can use.
  2. I just tried to implement full text searching to my database. It's working for the most part, but when I search for numbers, it doesn't return the rows as expected. For example, I have a table of venues, and one is called "901 Bar and Grill". When I search for "901 bar" my query looks like this: SELECT DISTINCT `venues`.*, MATCH(`meta`, `name`, `vdescription`) AGAINST ('901 bar') AS venuescore FROM `venues` WHERE (`vpending` = '0') AND (MATCH(`meta`, `name`, `vdescription`) AGAINST ('901 bar')) The specific entry for 901 bar looks like this: name: 901 Bar & Grill meta: 9-0 nine-o 90 Shouldn't this show up with a search for "901 bar"? Thanks for any help.
×
×
  • 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.