Jump to content
php.lv forumi

Teksta parādīšana izmantojot PHP


Pentiums

Recommended Posts

Labdien. Kodējot kārtējo valsts pasūtīto projektu, es uzdūros lielai problēmai. Es nezinu, kā lapā var attēlot tekstu izmantojot PHP.

Ir lapa, kur esmu uzrakstījis kodu, kas no datubāzes izvelk tekstus, bet nezinu kā attēlot!!!

$result = mysql_query("SELECT id, teksts, datums FROM aktualitates ORDER BY id DESC LIMIT 10");
if(mysql_num_rows($result) > 0) {
   while($data = mysql_fetch_array($result)) {
       //Te es nemāku to sarežģīto lietu izdarīt.
   }
}
else {
   die('Viss ir štokos, te nav nevienas aktualitātes, tāpēc es neko te nerādīšu jums!!! sapratāt??');
}

Link to comment
Share on other sites

$result = mysql_query("SELECT id, teksts, datums FROM aktualitates ORDER BY id DESC LIMIT 10");
if(mysql_num_rows($result) > 0) {
   while($data = mysql_fetch_array($result)) {
       echo "'.$data['teksts'].'";
   }
}
else {
   die('Viss ir štokos, te nav nevienas aktualitātes, tāpēc es neko te nerādīšu jums!!! sapratāt??');
}

Edited by xmas12
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...