Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: shawntbanks
  • Content: Threads
  • Order by date
  1. shawntbanks

    trying to do inner joins

    I am trying to have a list of artist, and beside them on the page a list of all artwork that is related to that artist. for example artist 1: artwork1 artwork2 artwork3 artwork4 This is my query. <cfquery datasource="artworks" name="get_artist">...
  2. shawntbanks

    how to rotate a banner ad

    This is the code that I have to rotate the banners now, but it only does so when I hit refresh, what I want to do is to rotate them while the page displays. (I am assuming that I will have to use javascript to do so) but I would like to use the exsiting code with it. This code pulls the banners...
  3. shawntbanks

    multipule slide shows on one page

    Below is the code that I am trying to use to put two slide shows on one page, but I can't seem to get it to work, does anyone have any ideas <HTML> <HEAD> <TITLE>homepage</TITLE> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> <script language="JavaScript"> // Set...
  4. shawntbanks

    help creating a value from an array

    hope that someone can help me. I have a shopping cart that is stored in arrays and structers. I have to send to the transaction provider a item string with the details of what was ordered. here is the code, can someone please help this is the string that the transaction provider needs me to...
  5. shawntbanks

    Email sitting on the server

    Exchange server has been set up and everything is working fine so far. The accounts are accessed over the internet, and I can send email no problem and the person that it is sent to receives it ok, but when they reply or send me a new one I can not receive it. if I look on the exchange server...
  6. shawntbanks

    populate dropdown menues.

    hi there, I am relitively new to coldfusion and Javascript, so i am looking for a little help regarding dropdown menues. I seem to have no problem populating them from scratch, but when I recall what a person has selected, and put that in as the selection that shows, and then give them the...
  7. shawntbanks

    Trying to populate a menu on Edit page

    I seem to have no problem populating a second menu from scratch, but when I try to do a edit page for my shopping cart application, I seem to run into problems, and I can't figure out how to do it. When a customer wants to edit their selection I populate the menues from the cart, the category...
  8. shawntbanks

    HTTP Header being displayed

    Looking for a solution. I have this code. <CFIF Len(Trim(FORM.picture1)) GT 0 and VAL(CGI.CONTENT_LENGTH) LT 20000><!--- ---> <CFFILE action=&quot;UPLOAD&quot; nameconflict=&quot;makeunique&quot; filefield=&quot;picture1&quot; accept=&quot;image/*&quot...
  9. shawntbanks

    Creating an order string to send for payment processing

    I need to create an orderstring to send to my payment processing company, fine if there is only one, but what if I have an array full of items and I have to create an orderstring for each one. The string has to follow this fromat <input type=&quot;hidden&quot; name=&quot;orderstring&quot...
  10. shawntbanks

    Help with shopping cart

    Looking for some help. When I use this code to add to a shopping cart, the first item goes fine, but when I go to add a second and third, the first one and the second disappear. I am puzzled. Any body got a suggestion <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;>...
  11. shawntbanks

    Table insertion problems

    I am having a problem trying to insert a variable into a record in a table. <cfquery datasource=&quot;market&quot;> insert into saleitem_tmp (subcategoryid, location, itemname, ShortDescription, longDescription, itemprice, featured, begindate, enddate, picture1, picture2, picture3...
  12. shawntbanks

    Creating Thumbnails

    I am looking for some guidence on how to create thumbnails from pictures that are uploaded to my server. I would like this to happen automaticaly. I have 4 pictures being uploaded and I need a thumbnail to go with them for quick display <CFIF Len(Trim(FORM.picture1)) GT 0 >...
  13. shawntbanks

    Trying to fill a page with &lt;cfoutput&gt;

    I am trying to gather information from a database and display it on a page. The problem being that I can Only get the data to display in on column, I want it to fill the page. I am tryng to display a picture with a name under it. On the page i would like to have between 3 and four columns wide...
  14. shawntbanks

    Limit the size of pictures being up loaded

    any seggustions on how to limit the size of an image being uploaded to a server.
  15. shawntbanks

    Message at top of Screen

    i am getting a weird message on the top of my screen when I am doing a cflocation. 1 page is collecting some data, and passing it on the the next page where it is bieng checked. One of the things that it is checking is the size of images being uploaded, and if they are too big the are being...
  16. shawntbanks

    Help with Shopping Cart

    I am trying to develop a shopping cart for a classified ad site, I know now that it is going to be different than a regular retail site, because I am selling I full description and not just a item. I want to be able to have a person enter all the information about a product including 4 pictures...
  17. shawntbanks

    Array Recordcount total

    Hi there. I am trying to get a recordcount on how many vehicle ads are in a database. I am getting it for each individual subcategory, but not as a whole. could some give me a hand <cfset Now_date = #dateformat (now(), &quot;yyyy-mm-dd&quot;)# > <cfquery datasource=&quot;market&quot...
  18. shawntbanks

    Help with searching between dates

    I am trying to search a datebase for items that have a begindate, and an enddate. I don't want them to display if the current date is not between those two dates. can anyone help me <cfset Now_date = #dateformat (now(), &quot;yyyy-mm-dd&quot;)# > <CFQUERY datasource=&quot;market&quot...
  19. shawntbanks

    help with jump menu

    I want to be able to select on of the vehicles from the drop down menu and have it go to a new page where you can enter information about that vehicle. <cfquery datasource=&quot;market&quot; name=&quot;getvehicles&quot;> select subcategory as vehicletype , count(*) as vehicles from...
  20. shawntbanks

    Goto new page when Item is selected from menu

    I have this code, and when I select an Item from a menu, I want it to take me to a new page related to that iteml. Any help would be appricated. <cfquery datasource=&quot;market&quot; name=&quot;getvehicles&quot;> select subcategory as vehicletype , count(*) as vehicles from adds where...

Part and Inventory Search

Back
Top