Jump to content

[SOLVED] help please


Nanosha

Recommended Posts

this is a php question...

 

you enter a search term into a text box and then use that term to query the database on which ever tables and fields you want. simply report the results returned...

 

You will find the

 

LIKE'%$_POST['searchterm']%'

and

 

MATCH (`field1`, `field2`) AGAINST ('$_POST['searchterm']', IN BOOLEAN MODE)

 

useful in this task...

Link to comment
https://forums.phpfreaks.com/topic/47857-solved-help-please/#findComment-233862
Share on other sites

this is a php question...

 

you enter a search term into a text box and then use that term to query the database on which ever tables and fields you want. simply report the results returned...

 

You will find the

 

LIKE'%$_POST['searchterm']%'

and

 

MATCH (`field1`, `field2`) AGAINST ('$_POST['searchterm']', IN BOOLEAN MODE)

 

useful in this task...

 

can u explain more please?

 

I wirte the site with http language and frontpage programe.

 

What I want to do is, that the site is with Register Member, and with Search function, so if somebody

search for somebody just write the nickname and will find him with all the Information about him.

 

so how can I make this?  ???

Link to comment
https://forums.phpfreaks.com/topic/47857-solved-help-please/#findComment-233870
Share on other sites

Hi Nanosha,

 

Well according to your need you want to register users and add let other users to search this list. This Obiviously need database. or you can do it with a flat file(*.txt) or XML files .. any way you do you need to have a "web programming language to do the trick of seaching through the database or flat file.

 

Or if you have javascript enabled on your browser please you can write the registered users name line by line and split and compare the each line  to get the searched name.

 

Regards

 

Bob

 

 

Link to comment
https://forums.phpfreaks.com/topic/47857-solved-help-please/#findComment-234081
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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