$userinformation_html = "";
$messages_html = "";
$artlist_html = "";
$maintable_html =
" \n".
" \n".
"
\n".
" \n".
" \n".
" My Information: \n".
" \n".
" | \n".
"
\n".
" \n".
" " . $userinformation_html . " \n".
" | \n".
"
\n".
" \n".
" \n".
" Messages : \n".
" \n".
" | \n".
"
\n".
" \n".
" " . $messages_html . " \n".
" | \n".
"
\n".
" \n".
" \n".
" My Art list \n".
" \n".
" | \n".
"
\n".
" \n".
" " . $artlist_html . " \n".
" | \n".
"
\n".
"
\n".
"
\n".
" \n";
$usernickname = "";
$userinformation_html = "" . $usernickname . "
\n";
$msg_from = "";
$msg_title = "";
$msg_body = "";
$msg_date = "";
$messages_html = $messages_html .
"From : " . $msg_from . "
\n".
"Title : " . $msg_title . "
\n".
"Body : " . $msg_body . "
\n".
"Date : " . $msg_date . "
\n";
main picture
title
hit count
subscription request
$tableHtml = $tableHtml . "\t\t\n";
$imgtag = "" . " " . "";
$titletag = "" . $list[title] . "";
$useridtag = "" . $list[artist_id] . "";
$hitcounttag = "" . $list[play_count] . "";
$ratetag = "" . $list[rate] . "";
$tableHtml = $tableHtml . generateArtTableHtml(
$imgtag,
$titletag,
$list[date],// "time",// $timetag,
$useridtag,
$hitcounttag,
$ratetag
);
function generateArtTableHtml(
$imgtag,
$titletag,
$timetag,
$useridtag,
$hitcounttag,
$ratetag)
{
$tableHtml =
"\n ".
" \n ".
" \n".
" \n".
" $imgtag \n ".
" $titletag \n".
" $timetag \n".
" $useridtag \n".
" $hitcounttag \n".
" $ratetag \n".
" $titletag \n".
" | \n".
" \n".
" \n".
" \n";
return $tableHtml;
}
|