need help ??>>

Discussion in 'PHP' started by infophp, Mar 25, 2007.

  1. #1
    :confused: how can i split the number 3 into 1 2 3 for my pagination that 1 2 3 of each will different link ?? thanks :)
     
    infophp, Mar 25, 2007 IP
  2. krakjoe

    krakjoe Well-Known Member

    Messages:
    1,795
    Likes Received:
    141
    Best Answers:
    0
    Trophy Points:
    135
    #2
    search pagination tutorial on google, it's way too overdone for it to be written out here again ....
     
    krakjoe, Mar 25, 2007 IP
  3. Rub3X

    Rub3X Well-Known Member

    Messages:
    1,902
    Likes Received:
    75
    Best Answers:
    0
    Trophy Points:
    135
    #3
    Something like

    <?php
    $x = 1;
    while($x != 3)
    {
    echo $x;
    $x++;
    }
    ?>

    Might work.
     
    Rub3X, Mar 25, 2007 IP