1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Buying Quick 10$ for tiny PHP Help - Urgent

Discussion in 'Programming' started by farhang, May 21, 2011.

  1. #1
    I am using this code in my wordpress Functions file to automaticly find the first image from the post content.

    
    function getImage($num) {
    global $more;
    $more = 1;
    $link = get_permalink();
    $content = get_the_content();
    $count = substr_count($content, '<img');
    $start = 0;
    for($i=1;$i<=$count;$i++) {
    $imgBeg = strpos($content, '<img', $start);
    $post = substr($content, $imgBeg);
    $imgEnd = strpos($post, '>');
    $postOutput = substr($post, 0, $imgEnd+1);
    $postOutput = preg_replace('/width="([0-9]*)" height="([0-9]*)"/', '',$postOutput);;
    $image[$i] = $postOutput;
    $start=$imgEnd+1;
    }
    if(stristr($image[$num],'<img')) { echo '<a href="'.$link.'">'.$image[$num]."</a>"; }
    $more = 0;
    }
    
    Code (markup):
    It's from http://bavotasan.com/tutorials/retrieve-the-first-image-from-a-wordpress-post/

    I use

    
    <?php getImage(1); ?>
    
    Code (markup):
    And it outputs the full <img code from the post. What i need to do is just show the src or url of the image.

    I have this code that does that but not sure how to get them to work together or just edit the main code so it outputs the image src instead of full image tag.

    
    $image = '<img src="http://something.com/someimage.jpg" align="right" vspace="5" hspace="5" border="0" class="img">';
    // get the src for that image
    $pattern = '/src="([^"]*)"/';
    preg_match($pattern, $image, $matches);
    echo $matches[1];
    
    Code (markup):
    Can anyone help ? 10$ for first person to answer.
     
    farhang, May 21, 2011 IP
  2. WorldKaoss

    WorldKaoss Well-Known Member

    Messages:
    231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    105
    As Seller:
    100% - 3
    As Buyer:
    100% - 0
    #2
    Is it still available? I can fix it for you right away.
     
    WorldKaoss, May 21, 2011 IP
  3. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    Waiting for anyone to post a working code here. First working code here get's the 10$. Don't PM :)
     
    farhang, May 21, 2011 IP
  4. WorldKaoss

    WorldKaoss Well-Known Member

    Messages:
    231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    105
    As Seller:
    100% - 3
    As Buyer:
    100% - 0
    #4
    Ok. I wanted to PM you but here's the fixed code. Let me know if this works for you:

     
    WorldKaoss, May 21, 2011 IP
  5. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #5
    I am sorry but that didn't output anything :(
     
    farhang, May 21, 2011 IP
  6. WorldKaoss

    WorldKaoss Well-Known Member

    Messages:
    231
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    105
    As Seller:
    100% - 3
    As Buyer:
    100% - 0
    #6
    what version of wordpress are you using? let me know and I'll download that to test the code with that before re-posting it here.
     
    WorldKaoss, May 21, 2011 IP
  7. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #7
    Wordpress 3.1 , php 5 .
     
    farhang, May 21, 2011 IP
  8. meno

    meno Active Member

    Messages:
    121
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #8
    i use this function

    use echo to show image

     
    meno, May 21, 2011 IP
  9. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #9
    farhang, May 21, 2011 IP
  10. meno

    meno Active Member

    Messages:
    121
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #10
    can you tell me your website..?
    maybe something wrong on content...not code...
     
    meno, May 21, 2011 IP
  11. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #11
    PM'ed You Meno!
     
    farhang, May 21, 2011 IP
  12. meno

    meno Active Member

    Messages:
    121
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #12
    i have replay, hope you found solution...
    Problem not on code above, but how you call image on single post...
     
    meno, May 21, 2011 IP
  13. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #13
    The image is not called separately, it's within the post content. The only difference it it doesn't uses default wordpress classes.

    The first code outputs the image fine.
     
    farhang, May 21, 2011 IP
  14. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #14
    Anyone ? :(
     
    farhang, May 21, 2011 IP
  15. IAreOwn

    IAreOwn Active Member

    Messages:
    46
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    95
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #15
    Job done and completed..
     
    IAreOwn, May 21, 2011 IP
  16. farhang

    farhang Active Member

    Messages:
    383
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #16
    Thanks IAareOwn. You rock!!!
     
    farhang, May 21, 2011 IP