Jump to content

AnnairaAnders

Members
  • Posts

    5
  • Joined

  • Last visited

AnnairaAnders's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. could you give me an example of what the Query code would look like for the Bluefire_Dragon_Baby.png. that is where i run into problems, I don't know how to query the images.
  2. Yes I know MySQL a little bit, and I can't get everything to work except the images, I can't figure out how to populate my database so that an image can be called, I have figured out how to put the text data and even the check box into the database and can use php to then populate my page with that data but I don't know how to do it with images, I usually create my database using php myadmin
  3. The problem I had with PHP was loading the images into the database and then being able to have them populate the page correctly so I changed it to an HTML table, if someone could help me out on how to handle the images I would be able to use PHP no problem.The Html code for my page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Dragonvale Checklist</title><link href="main.css" rel="stylesheet" type="text/css" media="screen" /></head><body><div class="wrapper"><br/><div class="character"><div class="banner"><img src="images/logos/dv_logo_1.png" alt="" /></div><table border="5"><tr><th>✓</th><th>Name</th> <th>Element</th><th>Breeding</th><th>Egg</th><th>Baby</th><th>Adult</th></tr><tr><td><input name="Own" type="checkbox" value="0" /></td><td>Air</td><td>Air</td><td>Fire/Water</td><td><img src="images/egg/Air_Dragon_Egg.png" alt="" width="104" height="127" /></td><td><img src="images/baby/Air_Dragon_Baby.png" alt="" width="104" height="127" /></td><td><img src="images/adult/Air_Dragon_Adult.png" alt="" width="104" height="127" /></td></tr><tr><td><input name="Own" type="checkbox" value="0" /></td><td>Blazing</td><td>Air/Fire</td><td>Air/Fire</td><td><img src="images/egg/Blazing_Dragon_Egg.png" alt="" width="104" height="127" /></td><td><img src="images/baby/Blazing_Dragon_Baby.png" alt="" width="104" height="127" /></td><td><img src="images/adult/Blazing_Dragon_Adult.png" alt="" width="104" height="127" /></td ></tr><tr><td><input name="Own" type="checkbox" value="0" /></td><td>Bloom~Expired</td><td>Plant/Cold/Lightning</td><td>Combine Plant/Cold/Lightning Elements</td><td><img src="images/egg/Bloom_Dragon_Egg_LA.png" alt="" width="104" height="127" /></td><td><img src="images/baby/Bloom_Dragon_Baby.png" alt="" width="104" height="127" /></td><td><img src="images/adult/Bloom_Dragon_Adult.png" alt="" width="104" height="127" /></td></tr><tr><td><input name="Own" type="checkbox" value="0" /></td><td>Blue Fire</td><td>Fire/Cold</td><td>Fire/Cold hybrid<br />Recommended: Fire/Snow or Fire/Lichen</td><td><img src="images/egg/Blue_Fire_Dragon_Egg.png" alt="" width="104" height="127" /></td><td><img src="images/baby/Bluefire_Dragon_Baby.png" alt="" width="104" height="127" /></td><td><img src="images/adult/BlueFire_Dragon_Adult.png" alt="" width="104" height="127" /></td></tr></table></div><br/></div></body></html>
  4. I have already created a table using HTML, I'm trying to create a checklist that multiple people can use and check off different things, I don't know how to make it accessible to multiple users and have the checks saved if they reload the page or leave the page and come back to it later.checklist here
  5. I have created a checklist using HTML tables, however I want different people to be able to use the checklist and be able to come back to it and check things off as they are acquired or completed. I'm pretty sure I will need to use PHP and I know how to create a login page, and I think to be able to save the checkboxes for individual people I would use a PHP form but I'm not sure how to incorporate the table I have already created. Any help would be appreciated.
×
×
  • Create New...