Results 1 to 3 of 3

Thread: Clickable variables

  1. #1
    Join Date
    Aug 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Clickable variables

    Hello everyone, sweet forums, quick question.

    I have a table on a database of say items. Its a inventory.

    Code:
    <?php
     echo "<big>Weapons For Sale</big>";
     $getgoods="SELECT * from equipment where type = 'Weapon' order by Price";
      $getgoods2=mysql_query($getgoods) or die("Could not fetch Weapons");
      print "<table border='4' bordercolor='black' bgcolor='white'>";
      print "<tr><td>Name</td><td>Type</td><td>Rating</td><td>Speed</td><td>Amount Available</td><td>Price</td></tr>";
      while($getgoods3=mysql_fetch_array($getgoods2))
      {
         print "<tr><td>$getgoods3[Name]</td><td>$getgoods3[Type]</td><td>$getgoods3[Rating]</td><td>$getgoods3[Speed]</td><td>$getgoods3[amountavail]</td><td>$getgoods3[Price]</td></tr>";
        }    
      print "</table>";
       ?>
    This just basically lists all the weapons in the table.
    ok now i want the player to be able to select a weapon by simply clicking on the name. It could then pass the variable to another page where it asks are you sure you want to buy this weapon, blah blah.

    Thanks for any help.

  2. #2
    Join Date
    Jul 2006
    Posts
    497
    Thanks
    8
    Thanked 70 Times in 70 Posts

    Default

    What have you tried? How did it not work?

    I would make another cell in that table-row and put a "Buy" link with an href of "buy.php?item=$id" or the equivalent.
    -- Chris
    informal JavaScript student of Douglas Crockford
    I like wikis - a lot.

  3. The Following User Says Thank You to Jesdisciple For This Useful Post:

    hallsofvallhalla (08-05-2008)

  4. #3
    Join Date
    Aug 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    wow good idea. I was initially trying to just make the name of the item as a link but i didnt know how to make the name a link in the array.

    Thanks!

Bookmarks

Posting Permissions

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