Recent content by ComputerHelp808

  1. C

    Here's how to index your stuff using Reddit

    I've automated that along with content by writing a news aggregator. Then I use a social service to submit to Twitter. Naturally, the generated page has ads in it before the news story. Rick
  2. C

    So.... Google just released another major update

    I agree Google spent so much time trying to keep websites out of their search engine that I find better search results from Bing. Rick
  3. C

    HTMLy Flat File Blog anyone use it?

    I'm not a database fan unless I absolutely have to use one. HTMLy is pretty flexible once I found the PHP functions I was able to do some editing. It used Mark Down and has a nice UI. Backing up is just a matter of FTP. I was just wondering if anyone else is using it in here and has any tips...
  4. C

    RIP John McAfee

    Not unless the government gives mainstream media permission
  5. C

    Aloha everyone

    Thank you I shall I'm treating myself like a new guy
  6. C

    wanna know YT secrets? ask me. i have almost all the tricks decoded !

    One interesting thing I recently heard is Google can now spider the audio in a YouTube video If that's the case then we cannot do things like just change the title from 2019 to 2021 and get more views
  7. C

    Aloha everyone

    Thank you that sounds very much like a good thing
  8. C

    Aloha everyone

    It's been quite a while since I've been here. I'd been focusing on my computer tutoring and repair business. I'm now ready to switch primary businesses to affiliate and online marketing. I'll tread lightly as I'm sure rules have changed by now. I'd appreciate other members calling me out if I...
  9. C

    Thinking about writing Amazon Affiliate Script - Thoughts

    I tried grabbing content with get file contents but the site blocked me from doing so
  10. C

    Would this date compare code work?

    Thanks guys $lastmod=strtotime($lastmod); $today = date("Y-m-d"); if ($today < $lastmod+strtotime('+7 days')) {exit; } //$lastmod is already in the y-m-d format so I didn't think I needed to add that Rick
  11. C

    Preg_match_all question

    Thank you. That one is new to me. I'll study it. Rick
  12. C

    Preg_match_all question

    I got this function to work. How can I edit it so I only get urls with nnnn in them? function getUrls($string) { $regex = '/https?\:\/\/[^\" ]+/i'; preg_match_all($regex, $string, $matches); return ($matches[0]); } //$urls = getUrls($string); //print_r($urls);
  13. C

    Preg_match_all question

    Like I said I'm still wrapping my head around preg_match_all but I like the fact I can avoid having to loop but the links would be like this <a href="http://nnnn.vendor.company" target="_blank">
  14. C

    Preg_match_all question

    Aloha everyone, I'm still having trouble wrapping my head around preg_match_all My ADHD brain hasn't seen the pattern yet. I have a var with web page content. How to I grab all urls with nnnn in them? Thanks, Rick
  15. C

    Thinking about writing Amazon Affiliate Script - Thoughts

    Any rules about grabbing Amazon products for my page and converting the links to my affiliate links? Any tips in doing this? As long as I can use get file contents replacing the strings should be pretty easy. Rick
Back
Top