Jump to content

Monkuar

Members
  • Posts

    987
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Monkuar

  1. $DB->query("SELECT * FROM ibf_logs WHERE receiver_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' or sender_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' order by id desc"); if ($DB->get_num_rows()==0) { echo "No Logs for you - I'm fixing this and Working on it. Dont worry, lol."; } else { while ($item = $DB->fetch_row()) { if ($item['sender_id'] == $ibforums->member["id"]){ $grabTwo = ($item[receiver_id] == Store ? "" : mysql_query("SELECT * FROM ibf_members WHERE id = {$item[receiver_id]}")); $getReceiver = ($item[receiver_id] == Store ? "" : mysql_fetch_array($grabTwo)); $nameFrom = "<a href='?showuser={$ibforums->member["id"]}'>" . $ibforums->member["name"] . (isset($ibforums->member["desktop"]) ? "<img src='{$ibforums->member["desktop"]}' </a>" : "</a>"); $nameTo = ($item[receiver_id] == Store ? "Store" : "<a href='?showuser={$getReceiver["id"]}'>" . $getReceiver[name] . (isset($getReceiver[desktop]) ? "<img src='{$getReceiver["desktop"]}'</a>" : "</a>")); } else { $grabThree = mysql_query("SELECT * FROM ibf_members WHERE id = {$item[sender_id]}"); $getSender = mysql_fetch_array($grabThree); $nameFrom = "<a href='?showuser={$getSender["id"]}'>" . $getSender[name] . (isset($getSender[desktop]) ? "<img src='{$getSender["desktop"]}'</a>" : "</a>"); $nameTo = "<a href='?showuser={$ibforums->member["id"]}'>" . $ibforums->member["name"] . (isset($ibforums->member["desktop"]) ? "<img src='{$ibforums->member["desktop"]}'</a>" : "</a>"); } $to = $nameTo; $from = $nameFrom; $amount = $item["amount"]; $time_date = $item["date_time"]; $message = $item["message"]; } } $this->output = $this->html->showlogz($to,$from,$amount,$time_date,$message ); This pulls up data from my MYSQL Forum Gold logs, but it only spits out this 1 line: This is the HTML for it: function showlogz($to,$from,$amount,$time_date,$message) { global $ibforums, $DB; return <<<EOF <fieldset><center><span class=row2><b>Forum Gold Logs</b> <table class='pformstrip' width="100%" border="0" cellspacing="1" cellpadding="4"> <tr> <td colspan="6"> <center> <form name="align_by" method="post" action="?act=logs"> <b>Month / Year:</b> <select name="month" id="month"> <option value='January'>January</option> <option value='February'>February</option> <option value='March'>March</option> <option value='April'>April</option> <option value='May'>May</option> <option value='June'>June</option> <option value='July'>July</option> <option value='August'>August</option> <option value='September'>September</option> <option value='October'>October</option> <option value='November'>November</option> <option value='December'>December</option> </select> 20<input name="year" type="text" maxlength="2" size="2" /> <input type="submit" name="update" id="update" value="Update"> </form> </center> </td> </tr> <tr> <td><b>To</b></td> <td><b>From</b></td> <td><b>Amount</b></td> <td><b>Date and Time</b></td> <td><b>Attached Message</b></td> </tr> <!!RESULTSET> <tr> <td class="row2">$to</td> <td class="row1">$from</td> <td class="row2">$amount <img src="gold3.gif" /></td> <td class="row1">$time_date</td> <td class="row2">$message </td> </tr> <!!/RESULTSET> <!!RESULTSETEMPTY> <tr><td colspan="5" align="center">$nologs</td></tr> <!!/RESULTSETEMPTY> </table> I have alot more Log's then just one.. and there's no "LIMIT" in the SQL.. ?? LOOK: $DB->query("SELECT * FROM ibf_logs WHERE receiver_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' or sender_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' order by id desc"); Were is LIMIT 1? why only spitting out 1 code.. ?
  2. thank u sir
  3. I just want to get rid of all the functions it uses.. and make it echo a output and i can put variables in the output that's all.. somone help clean this baby up? require_once "sources/shop/core_lib.php"; //-------------------------------------------------------------- // Pull up the logs //-------------------------------------------------------------- $templateform = loadtemplate("logs"); $id = $ibforums->member["id"]; $name = $ibforums->member["name"]; $month = ( isset($_POST[month]) ? $_POST[month] : date(F) ); $year = ( isset($_POST[year]) ? "20" . $_POST[year] : date(Y) ); $DB->query("SELECT * FROM ibf_logs WHERE receiver_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' or sender_id = {$ibforums->member["id"]} && month = '$month' && year = '$year' order by id desc"); if ($DB->get_num_rows()==0) { eval(empty_table); } else { eval(start_table); while ($item = $DB->fetch_row()) { if ($item['sender_id'] == $ibforums->member["id"]){ $grabTwo = ($item[receiver_id] == Store ? "" : mysql_query("SELECT * FROM ibf_members WHERE id = {$item[receiver_id]}")); $getReceiver = ($item[receiver_id] == Store ? "" : mysql_fetch_array($grabTwo)); $nameFrom = "<a href='?showuser={$ibforums->member["id"]}'>" . $ibforums->member["name"] . (isset($ibforums->member["desktop"]) ? "<img src='{$ibforums->member["desktop"]}' </a>" : "</a>"); $nameTo = ($item[receiver_id] == Store ? "Store" : "<a href='?showuser={$getReceiver["id"]}'>" . $getReceiver[name] . (isset($getReceiver[desktop]) ? "<img src='{$getReceiver["desktop"]}'</a>" : "</a>")); } else { $grabThree = mysql_query("SELECT * FROM ibf_members WHERE id = {$item[sender_id]}"); $getSender = mysql_fetch_array($grabThree); $nameFrom = "<a href='?showuser={$getSender["id"]}'>" . $getSender[name] . (isset($getSender[desktop]) ? "<img src='{$getSender["desktop"]}'</a>" : "</a>"); $nameTo = "<a href='?showuser={$ibforums->member["id"]}'>" . $ibforums->member["name"] . (isset($ibforums->member["desktop"]) ? "<img src='{$ibforums->member["desktop"]}'</a>" : "</a>"); } $to = $nameTo; $from = $nameFrom; $amount = $item["amount"]; $time_date = $item["date_time"]; $message = $item["message"]; eval(do_row); } eval(end_table); } $output = $templateform; print_and_exit(); thanks.. like the print_and_exit(); like i dont even want that i just want to beable to echo my stuff out w/o all these weird functions..
  4. $randompic = $this->randompic(); if($randompic != TRUE){ $ranpic_output = $this->html->random_pic($randompic); } $this->output .= $this->html->cats_header($cattitle,$data['authors'],$data,$data['nick'],$ranpic_output); Ok I need to get $randompic in my $this->html->cats_header How do i do that? i'm calling $ranpic_output too! ?
  5. It's ipb 1.3, lol from 2003 not worried but thanks for that i never knew about that link bro ima check hella stuff now,
  6. thanks, bro i sent u a PM My head is still shaking dood your a god.. god bless u and go to heaven man your awesome thank u.. so much omg ima cryy
  7. LOL IT WORKED AHAHAH!______________~_~_~_~_~ HOLY MUNCHKINS OF VAGINA!!!!!!!!!!! I LOVE YOU DOG GOT PAYPAL I SEND $ QUICK GOGOGOG Dood i am shivering with anervous breakdown right now, omg i appreciate all you guys help man Ilove you... Holy crap i am pissing my pants, holy crap.. my fingers shivvering, now what if i want more then 3 rows down? say about 7 rows down but still 3 across? omg i am so nervous thxxxxx cant type...11 omggg
  8. <td width="33%"> <fieldset><legend>{$info['sname']}</legend> <div class="p3"> Added on {$info['date']} by {$info['author']}</a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: {$info['views']}<br><br> Rank: {$info['rating']}<br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download={$info['id']}"><img src='{$info['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></table> </fieldset> it's html code function the ' 's even matter?!?! anyway i've done that, now what?
  9. I tryed guess and check on all tags.. http://forums.24-7gt.com/index.php?dlcategory=4 i removed </tr>'s still nothing happen ~ Yea side by side then break every 3rd 1 :DDDd
  10. I'm shivering and shaking right now.. i've been working on this for 23hours now i cant even get a 3rd row a BREAK TAG, LOL it's because this code is so old from 2002 and 2000 lines of code in this single downloads.php thing for my forum.. Give you FTP all i can do im sick of explaning this is the best I can explain for you. This code is in my sources/downloads.php while($row = $DB->fetch_row($findscript)) { $row['date'] = date("D, M j Y g:i a",$row['date']); if ($row['updated']){ $row['updated'] = date("D, M j Y g:i a",$row['updated']); } else { $row['updated'] = $ibforums->lang['never_updated']; } if($row['author'] == $row['poster']) { $row['author'] = "<a href='{$ibforums->base_url}showuser={$row['mid']}'>{$row['author']}</a>"; } else { $row['author'] = $row['author']; } if($row['rating'] == 0){ $row['rating'] = $ibforums->lang['not_rated']; } else { $row['rating'] = $this->return_rate($row); } if($ibforums->input['cat'] != 'all'){ $row['cat_extra'] = ""; if($ibforums->vars['d_dis_screen_cat'] == "1" || ($ibforums->vars['d_dis_screen_cat'] == "2" && $row['dis_screen_cat'] == "1")){ $row['screen_extra'] = "1"; $row['screenshot'] = $this->screenshot($row); $this->output .= $this->html->files($row); } elseif ($ibforums->vars['d_dis_screen_cat'] == "0" || ($ibforums->vars['d_dis_screen_cat'] == "2" && $row['dis_screen_cat'] == "0")) { $row['screenshot'] = ""; $this->output .= $this->html->files1($row); } } else { $row['cat_extra'] = "<br />(".$row['cname'].")"; $row['screenshot'] = ""; $this->output .= $this->html->files1($row); Then $this->output .= $this->html->files1($row); is run and that code is: function files1($info) { global $ibforums; //caption is sname return <<<EOF <td width=33%> <fieldset><legend>{$info['sname']}</legend> <div class="p3"> Added on {$info['date']} by {$info['author']}</a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: {$info['views']}<br><br> Rank: {$info['rating']}<br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download={$info['id']}"><img src='{$info['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr></table> EOF; } Witch is in skin/1/skin_downloads.php Witch is HTML Enabled, the other code u gave me, I Was putting that in above the previous code that's why i needed backslashes, but this 1 is html enabled but I dont think I can loop html functions??!! LMAO!! And now im stuck and I Feel bad bcz u guys tryed to help.. OMGggggggggg I'm doing the best I can i french srry 4 english but u guys must understand, i have to get this done my forum is my life.. i learn php and love ittt
  11. http://forums.24-7gt.com/index.php?dlcategory=4 lol You got a mic? msn or aim so we can talk and i'll giv u ftp man please. I'll tell u what line and stuff sir plz..
  12. OK w/e I did your way and I still got a list of gallery blocks only on the left hand side, i'm not even using files1 function because u told me to use $max_cols = 5; // This is the number of columns you want per row $column = 0; // This sets the counter at 0 while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number echo "<table width=\100%\> </tr><tr valign=top><td width=\33%\><fieldset><legend> {$row['sname']} </legend> <table class=\"ftb\"> <td width=\"100%\"> Added on {$info['date']} by {$info['author']}</a> </td> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr>"; if ($column == $max_cols) { echo '</tr><tr>'; // Start new row $column = 0; // Reset counter } } wtich just uses it
  13. why am i gonna use $max_cols = 5; // This is the number of columns you want per row $column = 0; // This sets the counter at 0 while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number echo "<table width=\100%\> </tr><tr valign=top><td width=\33%\><fieldset><legend> {$row['sname']} </legend> <table class=\"ftb\"> <td width=\"100%\"> Added on {$info['date']} by {$info['author']}</a> </td> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr>"; if ($column == $max_cols) { echo '</tr><tr>'; // Start new row $column = 0; // Reset counter } } when it's alrdy the code calling files1 is my html for the gallery, i only use $max_cols = 5; // This is the number of columns you want per row $column = 0; // This sets the counter at 0 while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number echo "<table width=\100%\> </tr><tr valign=top><td width=\33%\><fieldset><legend> {$row['sname']} </legend> <table class=\"ftb\"> <td width=\"100%\"> Added on {$info['date']} by {$info['author']}</a> </td> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr>"; if ($column == $max_cols) { echo '</tr><tr>'; // Start new row $column = 0; // Reset counter } } because i didn't want to mess with files1 beinig called omg im so freakn confused and mad wow
  14. my while statement is $max_cols = 3; // This is the number of columns you want per row $column = 0; // This sets the counter at 0 while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number ??? im lost ? so i have to put $max_cols = 3; $col_num = 0; while ($row = $DB->fetch_row($findscript)) { $col_num++ before while statement? then it will error me,
  15. it's in a html allowed function on that, lol function files1($info) { global $ibforums; //caption is sname return <<<EOF <td width=33%> <fieldset><legend>{$info['sname']}</legend> <div class="p3"> Added on {$info['date']} by {$info['author']}</a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: {$info['views']}<br><br> Rank: {$info['rating']}<br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download={$info['id']}"><img src='{$info['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr></table> EOF; } I can put any html i want and it'll work my whole forum is based of these functions.. it's just that it spit's this out for my gallery images but I cant php in that html enabled section so... makes it so harddddd
  16. The is called function files1 witch my main php spits this out to show the gallery, function files1($info) { global $ibforums; //caption is sname return <<<EOF <td width=33%> <fieldset><legend>{$info['sname']}</legend> <div class="p3"> Added on {$info['date']} by {$info['author']}</a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: {$info['views']}<br><br> Rank: {$info['rating']}<br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download={$info['id']}"><img src='{$info['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr></table> EOF; } this code while($row = $DB->fetch_row($findscript)) { bla bla bal $this->output .= $this->html->files1($row); spit's it out so that's a problem We could fix it here right ?
  17. I can only make them go horizontal, not vertical.. omg... DOOD im so raged, lol
  18. OK i'll try to get them lined up.. I'm so lost, lala.. THanks for all your help.. Maybe i can giv u ftp access and u can do some quick work for me, up to you? Anyways i'll get to it.. try to post anything u can for me while im working, thank u.
  19. OK am I GETTING CLOSE? I Did this to the code: <table width=\100%\> </tr><tr valign=top><td width=\33%\><fieldset><legend> {$row['sname']} </legend> on the top part, now i just need these to go every other 3.. omg
  20. K this is the code im using, and this is a screenshot on what happends.. $max_cols = 3; // This is the number of columns you want per row $column = 0; // This sets the counter at 0 while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number echo "<table width=\100%\> </tr><tr valign=top> <td width=\"33%\"><fieldset><legend> {$row['sname']} </legend> <table class=\"ftb\"> <td width=\"100%\"> Added on {$info['date']} by {$info['author']}</a> </td> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr>"; if ($column == $max_cols) { echo '</tr><tr>'; // Start new row $column = 0; // Reset counter } } I did your edits to put it below the <table class=ftb> doesnt help. Screenshot:
  21. that just moved everything to the left this is the code im using: while($row = $DB->fetch_row($findscript)) { $column++; // Increment to the correct column number echo "<td width=33%> <fieldset> <legend>{$row['sname']}</legend> <div class=\"p3\"> Added on {$row['date']} by {$row['author']}</a></div> <table class=\"ftb\"> <tr> <td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"> <span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span><br> </td> </tr> </table> </fieldset> </td>"; if ($column == $max_cols) { echo '</tr><tr>'; // Start new row $column = 0; // Reset counter } } that nice guy gave it to me over pm but it still just shows normal rows going up and down..
  22. CSS: #logo { background-image: url(banner.png); background-repeat: no-repeat; height: 75px; } form { display:inline } img { vertical-align:middle; border:0 } TABLE, TR, TD, BODY, SELECT, BUTTON, TEXTAREA { font-family: Tahoma; font-size: 11px; color:#0084FF } TEXTAREA { background-color: #212121; color:#0084FF; border-color:#CECECA; } BODY { background:#212121; margin:10px } SELECT {background-color:#212121; } INPUT { background-color:#212121; font-family: Tahoma; font-size: 11px; color:#0084FF; border-color:#CECECA; } a { text-decoration:underline; color:#CECECA } a:hover { color:#A4D3FF; text-decoration:underline } .lM, .lB { position:absolute; left:24px; top:12px; color:#CECECA; } .lB { left:25px; top:13px; color:#212121; font:20px } .lD a, .lD a:hover { text-decoration:none; color:#A4D3FF; font:20px Tahoma } .lS { font:10px; border-top:1px solid #CECECA; } .lB .lS { border-top:1px solid #212121 } .head { height:44px; border:1px solid #0084FF; background:#212121; padding:0; margin:0 } .fL { float:left } .fR,.barR,.lL { float:right } .lL { margin:6px 5px } .lL img { position:absolute; margin-top:2px } .lL a { margin-left:15px } .bar, .news { border:1px solid #0084FF; background:#444849; font:11px } .news { margin-top:5px } .bar { padding:5px; margin-bottom:10px } .bar a { padding:0 4px; text-decoration:none } .bar a:hover { text-decoration:underline } .barL a { border-right:1px solid #0084FF } .barR a { border-left:1px solid #0084FF } .news { text-align:center; padding:5px } fieldset, legend, .pager { border:1px solid #0084FF } fieldset { margin:7px 0; padding:0 } legend { font-weight:bold; padding:2px 10px; margin-left:10px; background:#212121; color: #CECECA; } /**/ * html legend { position:absolute; top:-.5em; left:.5em; margin-left:0 } * html fieldset { position:relative; margin-top:1em; padding-top:.75em; margin-bottom:14px } .desc, a.desc, .sig { font:10px } .edit { font:10px; font-style: italic; color:#A4D3FF; font-size: 9px; } /**/ legend a { text-decoration: none; color: #CECECA } /**/ legend a:hover, a:hover.desc { text-decoration:underline; color:#A4D3FF } fieldset.in { margin-left:auto; margin-right:auto } .ftb, .ftbt { border-spacing:0; width:100%; border-collapse:collapse } .ftb TD, .ftbt TD { border-top:1px solid #323232; background:#212121; padding:2px 3px } .ftb TD { border-right:1px solid #323232 } TD.lc { border-right:0 } .bc1, .bc1 TD, TD.bc1 { background:#212121; } .foot { padding:5px } .bts, .bts TD, .foot {border-top:1px solid #0084FF } fieldset, .ftb TH, .ftbt TH, .foot, .pager { background:#323232 } .pager { display:inline; padding:2px 4px } .pager b, .pager a { margin-left:1px; padding:0 2px; background:#212121 } .crt { text-align:center; font:9px } .mpl { background:#212121; padding:1px; border:1px solid #0084FF } .mpl { font:10px; margin-right:1px } .mpll { background: #323232; } .mpl a { text-decoration: none; } .links a { padding:0 5px; border-left:1px solid #0084FF } .quote1, .quote2 { margin-left:8px; padding:1px 4px; border-left:2px solid #0084FF; border-right:1px solid #0084FF } .code2 { margin-left:8px; padding:1px 4px; border-left:2px solid #0084FF; border-right:1px solid #0084FF } .quote1 { font-weight:bold; margin-top:1px; background:#323232; border-top:1px solid #345487 } .quote2 { margin-bottom:1px; border-bottom:1px dotted #0084FF } .code2 { margin-bottom:1px; border-bottom:1px solid #0084FF } .code2 { font-family: Courier New, Courier } .sig { color:#FFF; border-top:1px solid #0084FF; padding-top:2px; margin-top:4px } .editor a { float: left; background:#323232; text-decoration:underline; width:21px; height:21px; text-align:center; border:1px solid #C8CBC5; display:block; margin:1px } .editor a:hover { border:1px solid #0084FF; } .hs { margin-left:6px } .p9{padding:9px} .p3{padding:3px} .ce { text-align:center } .c { clear:both } .st { color:#A4D3FF } .re { color:#FFF } .se { color:#0084FF } .gr { color:#31F664 } .ta { color:#F00 } .ab input, .ab a, a.ab { white-space:nowrap; text-decoration:none; text-align:center; color:#CECECA; background:#323232; margin:1px; border:1px outset; border-color:#0084FF; } .ab a:hover, a:hover.ab, .ab input:hover { color:#A4D3FF } .ab a, a.ab { width:1px; padding:1px 10px } .bR, a.bR, input.bR { background:#C41919 } .ib img { border:1px solid #C2CFDF } .e1,.e2,.e3,.e4,.e5{width:0;height:0;line-height:0} .e1 { border-top:5px solid #A4D3FF; border-right:7px solid #0084FF; border-bottom:5px solid #A4D3FF; border-left:7px solid #0084FF } /**/ .e2 { border-top:5px solid #CECECA; border-right:7px solid #97AFC5; border-bottom:5px solid #CECECA; border-left:7px solid #97AFC5 } /**/ .e3 { border-top:5px solid #FFAE7F; border-right:7px solid #CF8E5F; border-bottom:5px solid #FF9E6F; border-left:7px solid #CF8E5F } .e4 { border-top:5px solid #FFDEAF; border-right:7px solid #CFBE8F; border-bottom:5px solid #FFCE9F; border-left:7px solid #CFBE8F } .e5 { border-top:5px solid #F55; border-right:7px solid #C41919; border-bottom:5px solid #F55; border-left:7px solid #C41919 } /**/ .cl,.cl a,.cl td,.cl td a,.cl .desc{color:#999} /* ######### Style for Drop Down Menu ######### */ .dropmenudiv{ position:absolute; top: 0; border: 1px solid #BBB; /*THEME CHANGE HERE*/ border-bottom-width: 0; font:normal 12px Verdana; line-height:18px; z-index:100; background-color: white; width: 200px; visibility: hidden; filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/ } .dropmenudiv a{ width: auto; display: block; text-indent: 3px; border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/ padding: 2px 0; text-decoration: none; font-weight: bold; color: black; } .dropmenudiv a:hover{ /*THEME CHANGE HERE*/ background-color: #D4E0FF; } ima try ur code over pm waitt
  23. ok here is the source code: <td width=33%><fieldset><legend> Ugly </legend> <div class="p3"> Added on Wed, Jun 3 2009 12:33 am by <a href='http://forums.24-7gt.com/index.php?showuser=8'>Aksel</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 8<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=181"><img src='http://s.bebo.com/app-image/7926675159/5411656627/PROFILE/i.quizzaz.com/img/q/u/08/04/13/99e6nn.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> Puppy </legend> <div class="p3"> Added on Wed, Jun 3 2009 12:29 am by <a href='http://forums.24-7gt.com/index.php?showuser=8'>Aksel</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 13<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=180"><img src='http://img.photobucket.com/albums/v319/Tiger_Boy1190/uglymofo.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> Red Circle </legend> <div class="p3"> Added on Tue, May 19 2009 12:47 am by <a href='http://forums.24-7gt.com/index.php?showuser=678'>theaxle</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 12<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=176"><img src='http://i245.photobucket.com/albums/gg77/vwguy72/negrocircle.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> They don&#39;t move, it&#39;s not animated. But still. Crazy </legend> <div class="p3"> Added on Fri, Jan 23 2009 3:00 pm by <a href='http://forums.24-7gt.com/index.php?showuser=306'>Yanik</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 20<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=165"><img src='http://f.imagehost.org/0589/Die_Kreise_drehen_sich_nicht.gif' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> by rat </legend> <div class="p3"> Added on Wed, Dec 17 2008 5:39 am by <a href='http://forums.24-7gt.com/index.php?showuser=181'>Steve</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 21<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=105"><img src='http://i456.photobucket.com/albums/qq287/legendoflinkd2jsp3/12.gif' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> wtf... </legend> <div class="p3"> Added on Wed, Dec 17 2008 5:38 am by <a href='http://forums.24-7gt.com/index.php?showuser=181'>Steve</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 14<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=104"><img src='http://i456.photobucket.com/albums/qq287/legendoflinkd2jsp3/11.gif' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> jezuz fucking chris... </legend> <div class="p3"> Added on Wed, Dec 17 2008 3:50 am by <a href='http://forums.24-7gt.com/index.php?showuser=181'>Steve</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 16<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=50"><img src='http://i67.photobucket.com/albums/h320/skronkykong/funny/bigjellyfish.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> oh my... god </legend> <div class="p3"> Added on Wed, Dec 17 2008 3:49 am by <a href='http://forums.24-7gt.com/index.php?showuser=181'>Steve</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 15<br><br> Rank: <img src='style_images//pip.gif' alt='File Rated' /><img src='style_images//pip.gif' alt='File Rated' /><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=49"><img src='http://www.sbnature.org/collections/bluewhale/images/2567.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset><td width=33%><fieldset><legend> oh my... </legend> <div class="p3"> Added on Wed, Dec 17 2008 3:48 am by <a href='http://forums.24-7gt.com/index.php?showuser=181'>Steve</a></a> </div> <table class="ftb"> <tr><td nowrap class="ce desc"> Public<br> Views: 16<br><br> Rank: <i>Not Rated</i><br><br> Comments: 0<br><br> </td> <td class="lc ib"><span class='linkthru'><a href="index.php?download=48"><img src='http://i72.photobucket.com/albums/i189/diaBoy/pigzilla.jpg' border='0' align='center' width='100' height='100' /></a></span> <br> </fieldset> </td> </td></tr></table> </fieldset> lol
  24. <table width=100%> </tr><tr valign=top><td width=33%> <td width=33%><fieldset><legend> {$row['sname']} </legend> <div class=\"p3\"> Added on {$row['date']} by {$row['author']}</a> </div> <table class=\"ftb\"> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr> That's my HTML. man im so lost on how to set everything up.. OMG PHP So confusing i love it tho.. Thanks for your idea..
  25. My Html is pretty much this: <table width=100%> </tr><tr valign=top><td width=33%> <td width=33%><fieldset><legend> {$row['sname']} </legend> <div class=\"p3\"> Added on {$row['date']} by {$row['author']}</a> </div> <table class=\"ftb\"> <tr><td nowrap class=\"ce desc\"> Public<br> Views: {$row['views']}<br><br> Rank: {$row['rating']}<br><br> Comments: 0<br><br> </td> <td class=\"lc ib\"><span class='linkthru'><a href=\"index.php?download={$row['id']}\"><img src='{$row['screenshot1']}' border='0' align='center' width='100' height='100' /></a></span> <br> </td></tr></table> </fieldset> </td></tr>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.