scheda Posted September 22, 2010 Share Posted September 22, 2010 I'm having a little trouble piecing together the exact formula I need to figure this out. I am getting results from the Google Search API, which comes in groups of 8 - which makes counting kind of annoying. Anyway, I'm parsing through the results to find a user defined URL, so the URL might be located on page 2 (results 9-16) in the second spot, making it result #10 in the total results. So what I need to do, is come up with a way to extrapolate the position number. I considered having a variable that counted every time a row was found that didn't have the URL in it, but that wasn't working properly, so I'm back to the real math. Any help here would be much obliged. Link to comment https://forums.phpfreaks.com/topic/214071-simple-math-formula/ Share on other sites More sharing options...
Mchl Posted September 22, 2010 Share Posted September 22, 2010 Like $position = ($page - 1) * 8 + $row ? Link to comment https://forums.phpfreaks.com/topic/214071-simple-math-formula/#findComment-1113999 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.