I need a list of porn star names

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nick3131
    Confirmed User
    • Dec 2004
    • 1193

    #1

    I need a list of porn star names

    Anyone know a good site for that. I can parse out the <a href's if I have to. So basically I just need a site with a bunch of porn stars listed on it.
    Signed nick3131

  • LiveDose
    Show Yer Tits!
    • Feb 2002
    • 25792

    #2
    http://www.adultcddvdvideo.com/Pornstar/pornstar.htm


    from google.

    Scammer Alert: acer19 acer [email protected] [email protected] Money stolen using PayPal

    Comment

    • nick3131
      Confirmed User
      • Dec 2004
      • 1193

      #3
      Originally posted by LiveDose
      Thats pretty good thanks.
      Signed nick3131

      Comment

      • abstractAFFect
        Registered User
        • Nov 2004
        • 42

        #4
        Yah that's the best.
        [::] Sean
        [:::] VP Marketing
        [::::] ProfitLAB
        [: ICQ 222-865743 :]


        SELL CYBERSEX2.0

        Comment

        • freecartoonporn
          Confirmed User
          • Jan 2012
          • 7683

          #5
          from xvideos pornstar list scraper

          PHP Code:
          <?php
          ini_set("memory_limit","-1");
          ini_set('max_execution_time', '-1'); 
          include_once 'simple_html_dom.php';
          
          foreach (range('a', 'z') as $char) {
              for($n=0;$n<=20;$n++){
                  $url = "http://www.xvideos.com/pornstars/".$char."/".$n;
                  $response_code=(get_headers($url)[0]);
                      if ((stripos($response_code, "200") !== false)) {
                      //echo $url."<br>";
                      $urlarr[]=$url;
                      }
              }
          }
          
          //print_r($urlarr);
          
          
          foreach ($urlarr as $url1) {
          
          $html = file_get_html($url1);
              foreach($html->find('p[class=profileName]') as $heading) { //for each heading
                      //find all spans with a inside then echo the found text out
                      echo $heading->find('a', 0)->plaintext . "<br>"; 
              }
          }
          SSD Cloud Server, VPS Server, Simple Cloud Hosting | DigitalOcean

          Comment

          Working...