aaricwon Posted March 25, 2008 Share Posted March 25, 2008 I have a site that promotes a professional fighting event. There is a site called Sherdog (www.sherdog.com) that has a Fight Finder. Basically stats on almost EVERY fighter. EVERY guy that fights in my event has his stats on www.sherdog.com. I would like a search box on my site where visitors can type in a name and it searches www.Sherdog.com basically they go to my site and if they want to search a fighter, they type in Eric and hit enter, that takes them here: http://www.sherdog.com/fightfinder/fightfinder.asp?FirstName=eric&LastName=&NickName=&search=yes Is that possible? Link to comment https://forums.phpfreaks.com/topic/97877-search-this-site-on-my-site-possible/ Share on other sites More sharing options...
aaricwon Posted March 26, 2008 Author Share Posted March 26, 2008 Anyone? Thanks in advance Link to comment https://forums.phpfreaks.com/topic/97877-search-this-site-on-my-site-possible/#findComment-500838 Share on other sites More sharing options...
teng84 Posted March 26, 2008 Share Posted March 26, 2008 read http://us3.php.net/manual/en/ref.curl.php Link to comment https://forums.phpfreaks.com/topic/97877-search-this-site-on-my-site-possible/#findComment-500845 Share on other sites More sharing options...
brevig Posted March 26, 2008 Share Posted March 26, 2008 I would do what the person said above me and think about scraping the other site and saving it's data locally. you could also use google on your site to search their site. Link to comment https://forums.phpfreaks.com/topic/97877-search-this-site-on-my-site-possible/#findComment-500847 Share on other sites More sharing options...
Northern Flame Posted March 26, 2008 Share Posted March 26, 2008 or you could just re-produce their HTML form on your site.... you can add this to your site: <form name="search_form" method="get" action="http://www.sherdog.com/news/search.asp"> <input name="SearchTxt" type="text" class="Box100" id="SearchTxt"> <input ignorename="Submit" type="submit" class="Button" id="Submit" value="Search"> <input name="SearchCat" id="SearchCat" type="hidden" value="all"> </form> Link to comment https://forums.phpfreaks.com/topic/97877-search-this-site-on-my-site-possible/#findComment-500854 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.