Jump to content

jdonisthorpe

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jdonisthorpe's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. OOoh, I really tried to find something like that.  Thank you!
  2. I am just learning php and trying to build a basic html page with columns.  The following script displays all my data in one column.  Now I am trying to figure out how to get it into three columns! Here is the code.  Any help is greatly appreciated! $query = "SELECT * FROM products WHERE CATEGORY LIKE '%anklet%'"; $result = mysql_query($query) or die ("couldnt execute query."); //Display results in a table while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) { echo "<table>"; echo "<tr>"; echo "<td><a href=\"{$row['BUYURL']}\"><img src=\"{$row['IMAGEURL']}\"><br>"; echo "{$row['NAME']}<br>\n"; echo "{$row['PRICE']}\n"; }
×
×
  • 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.