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.

Please Help Me

Discussion in 'PHP' started by aCebOy, Dec 29, 2012.

  1. #1
    Hello Dear Senior Programers, Please Help Me tO Create Auto Pagination In My Web Site Please Tell Me That In This Script,

    <script>
    $(function() {

    var $update = $( '#preview > span' );

    $( "#slider" ).pagination( {
    total : 100,
    onChange : function( value ) {
    $update.text( value );
    }
    } );

    });


    Which Syntax We Can Enter To Open Next Page Automatically Like Page2.php And In Page 3 Script Open Page3.php Please Tell Me, I'm Noob In Web Programing .. :(
     
    aCebOy, Dec 29, 2012 IP
  2. geforce

    geforce Active Member

    Messages:
    173
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    78
    #2
    After $update.text(value); on the next line add:
    document.location = 'page' + value + '.php';
    Code (markup):
    That will automatically send user to page2.php and so on.
     
    geforce, Dec 30, 2012 IP