I am making a search site and want to know how to ad ads to the results well i know how just can not find out where i have been trying for 2 days now.If i send you the code can you try to see for me please and thanks or even tell me how to make the search results smaller and i will add the ads on the outside right hand side.Thanks
have you already got the results paginated? I mean if you have, then all you have to do really is add a simple variable into the echo'ing of the results, and then sort out the frequency of how often you want the advertisements to be mixed with your results. Now between each echo, you can add 1 to the variable (e.g. $i++ and then when it meets the criteria, echo out the add. E.g. Check value of $i, if the value is enough for the ad frequency, echo the ad Echo out next result $i++; to increase the value of your variable by 1 This is as helpful as I can get without seeing your code