Jump to content

PHP string_replace


menwn

Recommended Posts

Hi all

I have this problem. I have a search engine and I would like the user to be able to search with prefix terms without using *. For know the user as to type "$someth*" but i would like to be able to search for "someth"
and add the * before the fulltext querry.

I tried useing str_replace('"', '*"', $someth) but this is not an option because I get *"$someth*" which of course is not correct

Can I do anything so as make php understand wich " is which?

thanks in advance
andreas
Link to comment
Share on other sites

Your not really making much sense.

You DONT want them to use wildcard * marks in a search query? Is that what your saying?

[code=php:0]
str_replace("*", "", $mystring);
[/code]

Where $mystring is the string your trying to search.
Link to comment
Share on other sites

If you're using a mysql query this can be easily done while selecting it from the database.

[code=php:0]
$string = $_POST['string'];
$array = array('*');
if(in_array($string,$array)){
$sql = "SELECT * FROM `tablename` WHERE `blah` LIKE($string)";
$res = mysql_query($sql) or die(mysql_error());
  while($row = mysql_fetch_assoc($res)){
  //search contents
  }
}else {
$sql = "SELECT * FROM `tablename` WHERE `blah` ='$string'";
$res = mysql_query($sql) or die(mysql_error());
  while($row = mysql_fetch_assoc($res)){
  //search contents
  }
}
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.