what i want is data for a particular url+keywords combination
| SitePoint Sponsor |
what i want is data for a particular url+keywords combination
Umm, i could not get what you mean? which url and keywords?
i mean if we give particular url+keywords (which are related to that url )i want data for that combination
example:www.bikes.com+black,200cc,2006model(keywords) now i want data for this combinations from thatspecified url

Do you want to extract something from this URL www.bikes.com+black,200cc,2006model(keywords)?
yes,i want data related to those two(data related to those keywords from that url) ex:bike cost,manufacturers such things
URL: http://www.bikes.com?keywords=black,200cc,2006model
Then in your index.php (or any other file you specify) you can useto get an array of keywords added in the URL, and with that array run some search queries on your database to get the data. Is this what you're trying to do? I'm not quite sure I understand you correctly..PHP Code:explode(',', $_GET['keywords']);
Neanderthal Technology
Bookmarks