Page 3 of 3 FirstFirst 123
Results 21 to 28 of 28
  1. #21
    Join Date
    Apr 2006
    Location
    UK
    Posts
    4,830
    Tokens
    0

    Latest Awards:

    Default

    function displayRares($type, $limit) {
    $raresQuery = mysql_query("SELECT * FROM `rares` WHERE type='$type' LIMIT $limit");
    echo "<table border='0'>";
    while ($rows = mysql_fetch_array($raresQuery)) {
    echo "<tr>";
    echo "<td>";
    if (!empty($rows['url'])) { echo("<img src=\"" . $rows['url'] . "\" alt=\"" . $rows['name'] . "\" />"); }
    echo "</td><td>";
    if (!empty($rows['name'])) { echo($rows['name']); }
    echo "</td>";
    if (!empty($rows['t'])) { echo("<td>" . $rows['t'] . "T</td>"); }
    if (!empty($rows['hc'])) { echo("<td>" . $rows['hc'] . "HC</td>"); }
    if (!empty($rows['rd'])) { echo("<td>" . $rows['rd'] . "RD</td>"); }
    echo "</tr>";
    }
    echo '</table>';
    }
    ?>

    Need a domain but dont have paypal... not to worry. You can purchase a domain via text or home phone at XeoDomains.mobi.

    (X Moderator)
    AKA Cheekykarl

  2. #22
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    Try something like this

    PHP Code:
    function displayRares($type$limit) {
    $raresQuery mysql_query("SELECT * FROM `rares` WHERE type='$type' LIMIT $limit");

        while (
    $rows mysql_fetch_array($raresQuery)) {
        print(
    "<div class=\"rare\">");

            if (!empty(
    $rows['url'])) {
            echo(
    "<img src=\"" $rows['url'] . "\" alt=\"" $rows['name'] . "\" /><br />");
            }

            if (!empty(
    $rows['name'])) {
            echo(
    $rows['name']);
            }

            if (!empty(
    $rows['t'])) {
            echo(
    $rows['t'] . "T "); }
            
            if (!empty(
    $rows['hc'])) {
            echo(
    $rows['hc'] . "HC ");
            }

            if (!empty(
    $rows['rd'])) {
            echo(
    $rows['rd'] . "RD ");
            }

        print(
    "</div>");
        }
    }
    ?> 
    HTML Code:
    <?php
    require("functions.inc.php");
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Rare Values</title>
    
    <style type="text/css">
    .rare {
        width: 20%;
        float: left;
        text-align: center;
    }
    </style>
    
    </head>
    <body>
    <?php
    displayRares("rare", "150");
    ?>
    </body>
    </html>
    If you want to change how many per row then you need to change the CSS.

    eg. 10% would be 10 per row, 20% would be 5 per row

    Enjoy - I havent tested yet so I may of done a silly error.

  3. #23
    Join Date
    Apr 2006
    Location
    UK
    Posts
    4,830
    Tokens
    0

    Latest Awards:

    Default

    http://habmate.com/uk/test4.php

    Woo It has worked.

    Thanks a lot +REP

    Need a domain but dont have paypal... not to worry. You can purchase a domain via text or home phone at XeoDomains.mobi.

    (X Moderator)
    AKA Cheekykarl

  4. #24
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    No problem, thanks for the rep

  5. #25
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    Thanks Lucky! +rep. How do i get the prices on a line down from the name?

    eg. come out like: Holiday Romance2HC 120credits
    i want it like:
    Holiday Romance
    2 HC
    120 credits
    (centered and with spaces)
    Last edited by Verrou; 21-08-2007 at 07:11 AM.
    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

  6. #26
    Join Date
    Apr 2006
    Location
    UK
    Posts
    4,830
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Verrou View Post
    Thanks Lucky! +rep. How do i get the prices on a line down from the name?

    eg. come out like: Holiday Romance2HC 120credits
    i want it like:
    Holiday Romance
    2 HC
    120 credits
    (centered and with spaces)

    This would be helpfull for me aswell.

    Need a domain but dont have paypal... not to worry. You can purchase a domain via text or home phone at XeoDomains.mobi.

    (X Moderator)
    AKA Cheekykarl

  7. #27
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    You would need to add a <br />

    PHP Code:
    function displayRares($type$limit) {
    $raresQuery mysql_query("SELECT * FROM `rares` WHERE type='$type' LIMIT $limit");

        while (
    $rows mysql_fetch_array($raresQuery)) {
        print(
    "<div class=\"rare\">");

            if (!empty(
    $rows['url'])) {
            echo(
    "<img src=\"" $rows['url'] . "\" alt=\"" $rows['name'] . "\" /><br />");
            }

            if (!empty(
    $rows['name'])) {
            echo(
    $rows['name']."<br />");
            }

            if (!empty(
    $rows['t'])) {
            echo(
    $rows['t'] . "T "); }
            
            if (!empty(
    $rows['hc'])) {
            echo(
    $rows['hc'] . "HC ");
            }

            if (!empty(
    $rows['rd'])) {
            echo(
    $rows['rd'] . "RD ");
            }

        print(
    "</div>");
        }
    }
    ?> 

  8. #28
    Join Date
    Oct 2006
    Posts
    2,918
    Tokens
    946
    Habbo
    Verrou

    Latest Awards:

    Default

    Quote Originally Posted by Special-1k View Post
    How do you uninstall an internet? I want to uninstall my Google Chrome and
    get firefox but I never really got rid of an internet my dad usually did it for me.
    If you know how post below so I can do this.

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •