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.

php help

Discussion in 'PHP' started by javacode, May 6, 2009.

  1. #1
    i have zshare script but i need a small help pls see this ur:http://alex4u.ulmb.com/zs/movies.php?url=52156190ff58cf17/ u can see they have put , If this video is not working, click here to watch it /zshare/wmv.php?url=code"> If this video is not working, click here to watch it</a>

    just i need to know how he is bring the same url= id number
    <a href="/zshare/wmv.php?url="> If this video is not working, click here to watch it</a>
     
    javacode, May 6, 2009 IP
  2. jestep

    jestep Prominent Member

    Messages:
    3,659
    Likes Received:
    215
    Best Answers:
    19
    Trophy Points:
    330
    #2
    You most likely need to do something like this...

    
    $url = $_GET['url'];
    
    PHP:
    <a href="/zshare/wmv.php?url=<?php echo $url; ?>"> If this video is not working, click here to watch it</a>
     
    jestep, May 7, 2009 IP