| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Member Join Date: Apr 2006 Location: Central PA
Posts: 101
![]() | PHP - getting info from another website. Hey, I've been coding PHP for awhile now and I'm currently developing a MySpace friend train. Everything is up and running smoothly but I ran into an issue that I don't know how to do, and I don't know where I should begin to look (Google didn't help to much). I want to get their Name, Age, Picture, and Location off the myspace profile. I've seen other trains do this just by asking for their Friend ID. I guess they just open up the persons profile and parse out what they are looking for. If its done another way, I'd like to know how, but if they do it by parsing out HTML, I'd also like to know where to look to learn how to do that. Thanks. |
| |
| | #2 (permalink) |
| Tech Support Join Date: Mar 2005
Posts: 4,944
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | You could use file_get_contents() and preg_match(). |
| |
| | #3 (permalink) |
| Senior Member Join Date: Jul 2005 Location: NJ
Posts: 1,219
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | guess u wud have to use regexp matches. get the source of the page of the person (html) and find these using reg exp Code: <meta name="description" content="MySpace Profile - NAME OF PERSON, AGE years old, SEX, , STATE, COUNTRY, QUOTE" /> or if u want specifics, here r some: display name: Code: <span class="nametext">DISPLAY NAME</span> Code: <td class="text" width="193" bgcolor="#ffffff" height="75" align="left">"QUOTE"<br> <br> (fe)Male <!-- just get it to match *male --> <br> AGE years old <br> STATE <br> COUNTRY ????: NamePros.com http://www.namepros.com/programming/194565-php-getting-info-from-another-website.html i suggest u just use the meta tag description to get all ur values and eval the argument
__________________ Hacksar.com - Your source for random computer tips and tricks! MySiteMemberships.com - Keep track of your site registration information! Like my post? Rep is appreciated! |
| |