Basma Posted October 25, 2010 Report Share Posted October 25, 2010 Sveiki, problēma tāda : <?php $query = $this->db->get('users'); foreach ($query->result() as $row) { //echo "<br>".$row->user; //iekomentēts } ?> Kā izdarīt tā lai izvadītos mārkera vietā %s piemēram Lietotājs : %s (no datu bāzes izvada *user* tikai vienu lietotāju!) E-pasts : %s (no datu bāzes izvada *email* tikai vienu lietotāju!) un lai izvada līdz beigām visu sarakstu no datu bāzes! Lietotājs : name E-pasts : name@name.lv Lietotājs : name_2 E-pasts : name_2@name.lv Quote Link to comment Share on other sites More sharing options...
Rincewind Posted October 25, 2010 Report Share Posted October 25, 2010 Vienkārši izbliezt visu sarakstu no datubāzes? foreach ($query->result() as $row){ echo 'Lietotājs:',$row->user,'<br>'; //vairs nav iekomentēts!!!1 echo 'E-pasts:',$row->email,'<br><br>'; } Quote Link to comment Share on other sites More sharing options...
Basma Posted October 25, 2010 Author Report Share Posted October 25, 2010 (edited) Paldies, tūlīt mēgināšu! Edited October 25, 2010 by Basma Quote Link to comment Share on other sites More sharing options...
mefisto Posted October 25, 2010 Report Share Posted October 25, 2010 Tu jau mainīgo $row->user vari izmanto vairākas reizes. Tas nav gluži 'read-once'. anyway .......................... http://lv.php.net/printf Bet patiesībā printf() lieto ļoti maz iekš php, jo tas pamatīgi apgrūtina koda lasāmību. Tas vairāk ir C kodēšanas .. emm .. standarts. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.