Aleksejs Posted December 2, 2009 Report Share Posted December 2, 2009 izvadīt '<table>'; kamēr(rindiņu_masīvs <- dabūt_kārtējo_rindiņu_no_DB()){ izvadīt '<tr><td>'.implode('</td><td>',rindiņu_masīvs) . '</td></tr>'; } izvadīt '</table>'; Quote Link to comment Share on other sites More sharing options...
2easy Posted December 2, 2009 Report Share Posted December 2, 2009 un kur tādā gadījumā man likt <td> :) ? kustini pelēkās šūnas... kad kko mācies, tad dari to pakāpeniski. vajag uztaisīt html table? sākumā uztaisi vnkāršu statisku table - 1 kolonna, 5 rindiņas. ok ir. pēc tam nākamais treniņš: jau taisi dinamiski no 5 elementu masīva. kad jau tas ir, datubāzē uztaisi vnkāršu tabulu ar 1 varchar(100) kolonnu un inserto tur 5 rindiņas. pēc tam parādi šo mysql tabulu htmlā. pēc tam jau vari sarežģīt treniņu ar 2x un vairāk kolonnu attēlošanu html tabulā un izdomāt, kā lietot implode() ar <td>. kko darot atnāks daudz vairāk atklāsmes nekā tikai uzdodot jautājumus. lasi manuāli, meklē tur funkcijas, kas varētu noderēt, strādājot ar db rekordiem, masīviem, stringiem... experimentē. tā tu ātrāk kko iemācīsies un ko šis te dara ? "\t" http://www.php.net/manual/en/language.types.string.php Quote Link to comment Share on other sites More sharing options...
briedis Posted December 2, 2009 Report Share Posted December 2, 2009 (edited) Eh, tas edi ir riktīgs trollis, nezinu vai viņam vispār ir jēga palīdzēt, pats viņš, acīmredzot, neko nejēdz iemācīties, vai vismaz IEMĀCĪTIES meklēt atbildes... Tik ar karotīti viņu pabarot... Edited December 2, 2009 by briedis Quote Link to comment Share on other sites More sharing options...
thesnarkie Posted December 2, 2009 Report Share Posted December 2, 2009 Edi, ja tev pat nav intereses pameklēt nepieciešamo google, tad, manuprāt, šis nav tavs lauciņš.. Ej un labāk paspēlē spēlītes inbox. Quote Link to comment Share on other sites More sharing options...
edi Posted December 3, 2009 Author Report Share Posted December 3, 2009 Edi, ja tev pat nav intereses pameklēt nepieciešamo google, tad, manuprāt, šis nav tavs lauciņš.. Ej un labāk paspēlē spēlītes inbox. manuprāt tavs posts bija lieks, vari iet ar zīdaiņu grabuļiem spēlēties :) Quote Link to comment Share on other sites More sharing options...
edi Posted December 7, 2009 Author Report Share Posted December 7, 2009 (edited) par to mb_convert_encoding mēģināju šitā mb_convert_encoding($row['name'], "Windows-1257") tagad sanāk tā, ka failā visus simbolus ir izgriezis :D ... īstenībā problēma bija tāda. rādīja error ka tāda encoding nav :) mēģināju ar Windows-1252,Windows-1251,Windows-1255 bet tie paši ķeburi Edited December 7, 2009 by edi Quote Link to comment Share on other sites More sharing options...
Aleksejs Posted December 7, 2009 Report Share Posted December 7, 2009 Priekš kam tev tas encodings ir jāmaina? Un no kāda encodinga maina to tu speciāli un apzināti nenorādi? Un kādēļ tieši uz Wincodingu? Quote Link to comment Share on other sites More sharing options...
edi Posted December 7, 2009 Author Report Share Posted December 7, 2009 paldies, tiku galā. nekādus mb_convert_encoding nemaz nevajadzēja :D Quote Link to comment Share on other sites More sharing options...
edi Posted December 14, 2009 Author Report Share Posted December 14, 2009 (edited) $currDate=date("d F Y", time()); $currDate = str_replace("January","janvāris",$currDate); $currDate = str_replace("February","februāris",$currDate); $currDate = str_replace("March","marts",$currDate); $currDate = str_replace("April","aprīlis",$currDate); $currDate = str_replace("May","maijs",$currDate); $currDate = str_replace("June","jūnijs",$currDate); $currDate = str_replace("July","jūlijs",$currDate); $currDate = str_replace("August","augusts",$currDate); $currDate = str_replace("September","septembris",$currDate); $currDate = str_replace("October","oktobris",$currDate); $currDate = str_replace("November","novembris",$currDate); $currDate = str_replace("December","decembris",$currDate); kad mēģinu ielikt ... $lines[]= '<td height=20 class=xl33 colspan=3 style=\'height:15.0pt;mso-ignore:colspan\'>'.$currDate.'</td>'; ... $currDate vietā tukša vieta, ja ieliek function currdate() { .. echo $currDate; } un ielik $lines[]= '<td height=20 class=xl33 colspan=3 style=\'height:15.0pt;mso-ignore:colspan\'>'.currDate().'</td>'; tad izvada lapā kā ar echo un failā arī tukšu vietu atstāj ) Edited December 14, 2009 by edi Quote Link to comment Share on other sites More sharing options...
briedis Posted December 14, 2009 Report Share Posted December 14, 2009 Kaut kā murgaini tev tur tā funkcija vai kas, kur čupa ar str_replace... $months[1] = "Janvāris"; $months[2] = "Februāris"; $months[3] = "Marts"; $months[4] = "Aprīlis"; $months[5] = "Maijs"; $months[6] = "Jūnijs"; $months[7] = "Jūlijs"; $months[8] = "Augusts"; $months[9] = "Septembris"; $months[10] = "Oktobris"; $months[11] = "Novembris"; $months[12] = "Decembris"; echo $months[date("n")]; Quote Link to comment Share on other sites More sharing options...
2easy Posted December 14, 2009 Report Share Posted December 14, 2009 tad izvada lapā kā ar echo un failā arī tukšu vietu atstāj ) nu ja, ka izvada kā ar echo, jo tev jau tur arī ir echo :D echo vietā vajag return... function currdate() { .. return $currDate; } ir atšķirība, vai pa gabaliem liek kopā masīvu/stringu, vai uzreiz izvada uz ekrāna Quote Link to comment Share on other sites More sharing options...
edi Posted December 16, 2009 Author Report Share Posted December 16, 2009 nu ja, ka izvada kā ar echo, jo tev jau tur arī ir echo :D echo vietā vajag return... function currdate() { .. return $currDate; } ir atšķirība, vai pa gabaliem liek kopā masīvu/stringu, vai uzreiz izvada uz ekrāna es jau visādi izmēģinājos :D tavs variants arī neder. beigās visu saliku seesija... 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.