Search results

  1. W

    Need windows application

    Sent you a PM.
  2. W

    A simple Ad rotate

    You could use the following very simple php code to rotate the ads and weight them. <?php // random number 1 - 100 $result_random = rand(1, 100); // if result less than or equal 70, display ad1 (70%) if($result_random <= 70){ print "<script type="text/javascript"> var uid...
  3. W

    How to calculate age from a year of birth?

    This should accomplish what you are trying to do: <?php $age = get_field("date_of_birth",$modelID); echo date_diff($age, date_create('today'))->y; ?>
  4. W

    Having problems with Python proxy scrapper

    Does it have to be python? I could probably whip up some code to do it in PHP.
  5. W

    i need filesonic php upload code

    Couldn't you just use the ftp upload option available through filesonic.com and this tutorial here?
  6. W

    Need to install Open VPN 2.1

    I can login but can not access any remote sites with this setup. I also have setup iptables. /sbin/iptables -F /sbin/iptables -t nat -F /sbin/iptables -t mangle -F /sbin/iptables -X /sbin/iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 3128 /sbin/iptables -t nat -A...
Back
Top