xmas12 Posted July 9, 2009 Report Share Posted July 9, 2009 Sveiki! Es izveidoju mājas lapu no php un izveidoju lai izvada lietotājus members.php failā , man visu izvada no IPB foruma. Bet es gribu izveidot lai piemēram lai var pārslēgt lapas un katrā lapā izvada 20 lietotājus un lai redzētu pārējot lietotājus tad vajag pāriet uz citu lapu. Šis ir mans kods un lūdzu varat savienot skriptu kopā ar manu kodu. Šo funkciju kuru man vajag sauc par pagination. <?php define('WWW','http://83.223.138.216/'); //Tavas web lapas adrese include_once('forums/conf_global.php'); //Cels uz foruma config failu $link = mysql_connect($INFO['sql_host'],$INFO['sql_user'],$INFO['sql_pass']); mysql_query('use '.$INFO['sql_database'].';'); $page = '<div id="userlist">'; $result = mysql_query('select t1.id,t1.members_display_name,t2.avatar_location from '.$INFO['sql_tbl_prefix'].'members t1 join '.$INFO['sql_tbl_prefix'].'member_extra t2 on (t1.id = t2.id);'); if (!empty($result)) { while ($r = mysql_fetch_array($result)) { $page .='<p> <div class="members"> <img class="avatar" src="'.$r[2].'" alt="'.$r[1].'" height="60" width="60" /><br /> <a href="index.php?id=lietotajs&user='.$r[0].'"> '.$r[1].'</a></div> </p>'; } } $page .='</div>'; mysql_close($link); echo $page; ?> Link to comment Share on other sites More sharing options...
marcis Posted July 9, 2009 Report Share Posted July 9, 2009 Gadījumā nav bijušas 34578934758 tēmas par šo tēmu? Lasi. Link to comment Share on other sites More sharing options...
Wuu Posted July 9, 2009 Report Share Posted July 9, 2009 Un gadījuma es to scriptu neizveidoju? Link to comment Share on other sites More sharing options...
xmas12 Posted July 10, 2009 Author Report Share Posted July 10, 2009 Var vērt ciet! Salaboju ar citu script!:) Link to comment Share on other sites More sharing options...
Recommended Posts