Recent content by tasburrfoot

  1. T

    Need Writer or Team of Writers

    Looking for around 100 low quality articles(~1000 words each), and 10-15 high quality articles with 3000-5000 words each. Low quality articles - don't really care about SEO content/keyword density, or minor grammatical/spelling mistakes, content depth/knowledge doesn't have to be too good, will...
  2. T

    PHP.net got owned?

    Once upon a time this may have been true.
  3. T

    PHP.net got owned?

    PHP is far from a bad language - just got a bad rap from popularity, ease of access, and ease of entry, leading to an army of idiots thinking they are "programming" and doing stupid shit constantly. Also before ~php 5.3 it was awful, since then it's improved in leaps and bounds. The...
  4. T

    Preg_match_all question

    Stop using preg_match for this. http://php.net/manual/en/class.domxpath.php DOM Xpath is built for this exact thing.
  5. T

    Need help writing a code

    Simplified a bit. <html> <head><title>Happy Birthday</title></head> <body> <h1>Hey <?= htmlentities($_REQUEST['name']) ?>, <br></h1> Wish you a very happy Birthday </body> </html> This whole thing could be done single page, with no server side at all.. <html> <head> <script>...
  6. T

    geo-redirect script to separate the traffic for Blogspot

    Why not use AWS Route 53? They can handle most of this for you. Didn't mention any specific languages, or anything else helpful in your post, pretty hard to come up with a recommendation.
  7. T

    Monetise our 2m+ followers on ig accounts, and bank!

    Sounds look a good opp - I've sent a PM with my Skype
  8. T

    How to speed up Html site?

    Compress your images, and using some form of caching.
  9. T

    Where to search for quality WordPress themes?

    Any market place is going to have the same problems, I use Themeforest and love it.
  10. T

    very valuable data in database

    Too late at this point to do a backup. Out of curiosity, what about this error made you think "Hey, maybe blackhatworld programming section will know the answer!" ?? Why not ask, you know, Stackoverflow, MS SQL support or one of the literal 100s of legitimate support channels that exist?
  11. T

    PHP code local machine

    Yes. First google search result for "Install PHP windows"... https://www.sitepoint.com/how-to-install-php-on-windows/ if you're on Linux there's an infinite amount of tutorials on this.
  12. T

    Permanently Closed Marketplace Sales Thread

    Is it ranking for anything or receiving any organic traffic at this point?
  13. T

    Is This PHP Code Correct?

    place all url's in "urls.txt", 1 per line.. If we want to code golf it... <?php header('location: ' . file("urls.txt")[mt_rand(0,count(file('urls.txt'))-1)]); ?> Otherwise <?php $files = file("urls.txt"); $url = $files[mt_rand(0,count($files)-1)]; header('location: ' . $url); ?> I'd...
  14. T

    Your Site(s) + My Monetization

    Looking to partner with Organic site owners with little to no monetization at the moment, interested in making $$. Not interested in paid traffic/arb sites. I currently have a number of sites earning x,xxx - xx,xxx/daily with daily traffic 9XX,XXX+ unique users, and I don't have the time to...
  15. T

    Got scammed by Catardat

    If someone steals your credit card info and uses it, Mastercard or Visa, or your lender will cover the charges - because it's typically their fault(unless they've stolen your card), and if your stuff is stolen from a skimmer at an ATM or something, the vendor will cover the damages - or more...
Back
Top