php üstlenmeden ve php için daha iyi kodlama?

0 Cevap php

benim app kalbi, o im yaratma bu süreç var, ama bunu (içgüdü) yapmak için onun kötü yol gibi hissediyorum, ve ben hırsız bu süreçte yanlış bir şey olup olmadığını görmek istedim, ve ben nedense i kötü bir şekilde yaklaşıyor! P.S. kod sadece sorunu üstlenmeden, gayet iyi çalışıyor.

bir işlemdir:

Kullanıcıların, diğer sitesi memebers (home.php) tarafından, onların en son faaliyetleri görmek, ana gidin

 //function to bring the latest activities from database
   $results=function getUserUpdates($_SESSION['user_id'];


while($row = mysql_fetch_array($results))

      {
//another function to format the activities in a social stream
          echo formatUpdate($row['user_note'],$row['dt'],$row['picture'],$row['username'],$row['id'],$row['reply_id'],$row['reply_name'],$row['votes_up'],$row['votes_down']);


      }

i pastie fonksiyon kodlarını koyduk.

formatUpdate fonksiyonu http://pastie.org/1213958

getUserUpdates fonksiyonu http://pastie.org/1213962

EDIT both functions are from different files they are included in home.php, formatUpdate from functions.php getUserUpdates from queries.php

0 Cevap