Recent content by inviz

  1. I

    Hey Fellows - Wordpress RSS Widget URL manipulation

    it's pretty hard to help you, without seeing the whole code. But I think this should do the trick: $link = str_replace($link, 'theirassociateid-20', 'yourassociateid-20'); Like this: /** * Process RSS feed widget data and optionally retrieve feed items. * * The feed widget can not have...
  2. I

    need go redirect script

    Hello, I havent tested this.. Just something i came up with using the freegeoip API.. Please reply if it's not working.. <?php function freegeoip_locate($ip) { $url = "http://freegeoip.net/json/" . $ip; $geo = json_decode(file_get_contents($url), true); return $geo; } $geo =...
  3. I

    PHP File to Log Visitors

    Newb advice? Google analytics is problaby one of the most detailed and best solutions out there to keep track of your visitors. There is also awstats wich could easily be installed on your server, if you have control over it ofcourse. why reinvent the weel? Why waste time programming...
  4. I

    PHP File to Log Visitors

    add google analytics to your site! :)
  5. I

    Who can make this ?

    skype: nvizible - Will fix this for you in 15-20 minutes.
  6. I

    Bot Makers, Create A Bot For Me & Get Paid.

    lol man, $50? seriously? No one who are smart enough to have learned a programming language/scripting language is stupid enough to work for $50 when they could have earned thousands in the same time... Simple math really.. You should learn a little more about what stuff costs in this business...
  7. I

    Which language for spider/crawler

    node.js, enuff said;)
  8. I

    Autoit great automation scripting tools if you dont know about it yet

    Autoit is a really awesome scripting language and pretty easy to learn if you know any other scripting language (like php, perl, javascript etc).. I made a cardcounter software for a live blackjack site with autoit..
  9. I

    Time to put your PHP skills to test :D

    Lol, this one was fairly easy Result: 20 of 20 100%Perfect!!! Time Spent 1:29
  10. I

    How to turn specific part of an image on site into an input field (search bar)?

    Apposl, post your image and i'll fix it for you.. easy peasy
  11. I

    How to turn specific part of an image on site into an input field (search bar)?

    yes, this is possible with css. <!-- HTML --> <input type="text" name="search" id="search" /> <!-- CSS --> input#search { background: url('path/to/image.jpg') no-repeat; border: none; outline: none; }
  12. I

    Interactive Book with games (Help)

    Flash is gonna die really soon. So please, for your own sake, invest your time in learning something usefull you also could use in the future. The only reason I even mentioded flash in my last post is because it's possible to achieve what you are asking with flash.. A good idea? I would say no...
  13. I

    Exit popup script help

    Here is a "hack" wich detects if the mouse is about to click the "close" button or "back" button and then displays a jquery popup.. You might have seen something similar on other sites. <style type="text/css"> * { margin: 0px; padding: 0px; } #leaving { text-align...
  14. I

    Interactive Book with games (Help)

    Like teribi said in his post, PDF files does not support much at all, other than displaying text and images.. So if you want to make an interactive learning application you have some possibilities like, Adobe flash, shockwave, air or Java.. And of course, IMHO the best alternative wich would be...
  15. I

    [help]need script in looks like

    Something quick i came up with <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" /> <title>Lock content</title> <style type="text/css"> * { margin: 0px; padding: 0px; } #locker {...
Back
Top