Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!---Brandon Sullivan week 4 homework--->
  2.  
  3. <cfquery name="qArtist" datasource="CF8IntroArtGallery">
  4. SELECT firstName, lastName, artistID
  5. FROM artists
  6. ORDER BY lastName
  7. </cfquery>
  8.  
  9. <html>
  10.  
  11.     <head>
  12.         <title>Art Query</title>
  13.     </head>
  14.    
  15.         <body>
  16.        
  17.         <h1>Art Search</h1>
  18.        
  19.             <form action="process.cfm" method="get">
  20.            
  21.                 <label for="searchArt">Name of Art: </label>
  22.                 <input type="text" name="searchArt" id="searchArt" />
  23.                
  24.                 <label for="searchArtist">Artist's Name:</label>
  25.                 <select name="searchArtist" id="searchArtist" />
  26.                     <option value=""></option>
  27.                     <cfoutput query="qArtist">
  28.                         <option value="#firstName# #lastName#">#lastName#, #firstName#</option>
  29.                     </cfoutput>
  30.                 </select>
  31.                
  32.                 <br />
  33.                 <br />
  34.                
  35.                 <fieldset>
  36.                     <legend>artSold</legend>
  37.                     <input type="checkbox" name="artSold" id="artSold" value="notSold" />
  38.                     <label for="artSold">Check to show only available pieces.</label>
  39.                 </fieldset>
  40.  
  41.                     <br />
  42.                     <br />
  43.                
  44.                 <input type="submit" name="btnSubmit" value="search" />    
  45.             </form>
  46.        
  47.         </body>
  48.    
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement