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 strongm 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: *

  1. demiancurran

    Multiple values in MySQL where statement?

    Hey there, I am trying to populate a loop using the following. <cfquery name="notice" datasource="#DSN_DATASOURCE#" username="#DSN_USERNAME#" password="#DSN_PASSWORD#"> Select * From notice Where id = "1,5,7" </cfquery> The problem is the 1,5,7 obviously. This info is coming through the...
  2. demiancurran

    Coldfusion MySQL multiple values in where statement

    Hey there, I am trying to populate a cfloop using the following. <cfquery name="notice" datasource="#DSN_DATASOURCE#" username="#DSN_USERNAME#" password="#DSN_PASSWORD#"> Select * From notice Where id = "1,5,7" </cfquery> The problem is the 1,5,7 obviously. This info is coming through...
  3. demiancurran

    Quotation doubling using HtmlEditFormat

    Has anyone every run into a single quote doubling when entering it into the database using HtmlEditFormat? How can this be avoided? Thanks
  4. demiancurran

    parse xml information with coldfusion

    Thank you tsuji, that helped and it works well now !
  5. demiancurran

    parse xml information with coldfusion

    Hello, I've been trying to display this xml information to a webpage but haven't had any success yet. So far, I've been able to store all the page information into a variable called myXMLDoc, and successfully XMLsearched that variable... but now i'm having trouble displaying that array of...
  6. demiancurran

    FCKeditor removes country names randomly

    Hey all, Has anyone ever run into trouble using FCKeditor .. where it randomly removes COUNTRY NAMES or CITY NAMES from a block of text ? I have a client who is using FCKeditor to administer and format his magazine-type articles... and the editor often leaves out important information such as...
  7. demiancurran

    text editors

    any analysis on the code that tiny mce produces ? xhtml, css?
  8. demiancurran

    text editors

    My client has grown frustrated with FCKEditor, and asked me to find an alternative. I've looked on google, and found Editize. Just wondering if anyone has any other suggestions. Thanks.
  9. demiancurran

    wysiwyg text editor database insert

    here is the error message You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 've seen, elegantly\u003cbr /\>referencing graffiti, but very simply executed.\u0' at line 2 This tells me that all of the edited text...
  10. demiancurran

    wysiwyg text editor database insert

    Hey all, I am trying to insert into a MySQL DB, a small textarea that uses FCKEditor. When the client edits an article, and submits it, sometimes the text escapes the SQL insert and ends up giving an error message. How can I stop the text from escaping the SQL statement ?
  11. demiancurran

    Variable not accepting in tag

    I am attempting to place a variable [value] in a ColdFusion tag called imageCFC. For some reason it is rejecting the value and giving me an error. Below is the code I am using followed by the error I am receiving. Thanks so much for any help I can get with this. I have tried a number of...
  12. demiancurran

    Flash Image cropper

    Thanks for your help ... this is what I ended up using . http://www.defusion.org.uk/code/javascript-image-cropper-ui-using-prototype-scriptaculous/ There was also another cropper that I thought was 'a little more fancy' http://labs.silverorange.com/archives/2003/june/mayitakeyour Demian
  13. demiancurran

    Change file name of PDF sent to the browser

    Hey there Guys, Just wondering if anyone knows how to change the filename of a PDF being sent to the browser using cfdocument? The filename attribute only works if saving the PDF to disk. Thanks
  14. demiancurran

    Setting looped session variables

    Awesome, thanks guys. Works great.
  15. demiancurran

    Setting looped session variables

    That does not work, I get the following error... Can not assign a value to a function. Unable to assign a value to the function "Evaluate" on line 14, column 8 Any other ideas?
  16. demiancurran

    Setting looped session variables

    I need to set a session variable in a loop. Here is what the variable should produce once looped... <cfset session.store[1].a1 = 18> <cfset session.store[1].a2 = 18> <cfset session.store[1].a3 = 18> In the loop the 1 at the end of the variable needs to be looped, so I need to know how to set...
  17. demiancurran

    Realtime font preview

    Hey all, I'm trying to create an input box that dynamically previews the clients text as they type it into the box... using a font selected from a list of 5 different special fonts. The idea I'm thinking of is used on many font and typeface websites. example of what I'm looking for...
  18. demiancurran

    Flash Image cropper

    Thanks Rob, I'm using CFMX. This is the necessary order of operations. Tell me if image.cfc can control all this. 1. customer uploads an image (gif, jpg, png) 2. customer is able to crop the picture themselves, according to scaleable width and height. I've found an example that is very close...
  19. demiancurran

    Flash Image cropper

    Hey all, I'm starting a new project in which I must accept an uploaded image, and be able to crop the image to specific dimensions. Does anyone know of a Flash / ColdFusion suite that does this ? All suggestions are welcome !

Part and Inventory Search

Back
Top