Jump to content

hhhhhhh

Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

hhhhhhh's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I'm trying to buid up a search engine to my web site, and when I hid the search button for example for "computer" it only shows me results for pages which includes only the word computer. but it would be ok if I would get a results as well for "computers" which has just a little "s" added to this string this is my query SELECT p.page_url AS url, COUNT(*) AS occurrences FROM r_page p, r_word w, r_occurrence o WHERE p.page_id = o.page_id AND w.word_id = o.word_id AND w.word_word = \"$keyword\" ->> and here is the keyword GROUP BY p.page_id ORDER BY occurrences DESC how can I do IT? i;ve tried with w.word_word LIKE \"$keyword\" and won;t work thanks guys!
  2. i have this direction "blog.php?id=1" and i wanted to change it to "blog1.html" - DONE! i have this direction "show.php?link=something-new-is-going-on&foto=1" and wanted to change it to "foto-something-new-is-going-on-1.html" - CAN't DO IT! i must say that "something-new-is-going-on" is a link which varies, it might be as well "something-good" or "old-kids" the code i've put in htaccess is Options +FollowSymLinks RewriteEngine on RewriteRule blog(.*)\.html$ /blog.php?inregistrare=$1 RewriteRule foto-(.*)-(.*)\.html$ /show.php?link=$1&foto=$2
  3. right now, i'm using mod rewrite to transform my links from blog.php?id=11 to blog11.html let's say that the blog entry #11 has the title "We go to Chigaco" what can i do to make the link to this page instead of blog11.html to have we-go-to-chicago.html ? any ideea?
×
×
  • 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.