girişli bir değer gönderme olsun?

0 Cevap php
<a href="companies.php?id='. $_GET['id'] .'&offset='. $next_offset .'"><input id="button" type="button" value="More"/>

i nasılsa = AValue göndermek & ofset istiyorum ama bir giriş düğmesine öyleydi. id olmadan.

how can i do the similer thing with useing form action get ? like ( warning epic fail ) i should add a hidden input or something ?

    echo '<form action="welcome.php" method="get">';
    echo '<a href="companies.php?id='. $_GET['id'] .'&offset='. $next_offset .'"><input id="button" type="button" value="More"/></a>';      
    echo '</form>';

Sizler sayesinde anlamıyorum eğer yorum lütfen!

Tamam nasılsa ben o iş yapmak için yönetmek var

    echo '<form action="companies.php?id='. $_GET['id'].'" method="get">';
    echo '<input type="hidden" name="offset" value="'.$next_offset.'">';
    echo '<input id="button" type="submit" value="More"/></a>';     
    echo '</form>';

but still have an error http://local.host/networks/companies.php?offset=5, where does my get id goes ? btw im still checking it out and thanks guys :)

ve aha! Çalışır

    // MORE PLUGIN
    echo '<form action="companies.php" method="get">';
    echo '<input type="hidden" name="id" value="'.$_GET['id'].'">';
    echo '<input type="hidden" name="offset" value="'.$next_offset.'">';
    echo '<input id="button" type="submit" value="More"/></a>';     
    echo '</form>';
    // END PLUGIN

0 Cevap