Recent content by DaBomb

  1. D

    Need PHP help

    that's exactly what I was looking for, but my regex sucks, so I took the easy way out. what regex can I use that will match blah=9999999999 (i.e. blah= followed by 10 integers)
  2. D

    Need PHP help

    That won't work... it would only replace blah=, and the not the value of it. this worked: $text = "http://www.google.com/search?hl=en&blah=0123456789&safe=off&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=cf"; $InjectedValue = "999999999"...
  3. D

    Need PHP help

    I'm familiar with that page and php string concepts.. just having a difficult time with this
  4. D

    Need PHP help

    having a difficult time with this.. wondering if anyone here can help. Let's say I have the following URL string: http://www.google.com/search?hl=en&blah=0123456789&safe=off&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=cf I need to replace the value of blah, blah is always 10...
Back
Top