Search results

  1. D

    Syntax error in UPDATE statement.

    got it.. if you want me to explain what i changed let me know. it was all in the modify data page.. so you can see it if you compare the old and new ones
  2. D

    Syntax error in UPDATE statement.

    okay, working on it .. making progress! i found some errors
  3. D

    PHP includes

    why dont you put the print line into the include page? then you dont have to worry about transferring variables between files.
  4. D

    duplicate values error

    read the old record and store the old values in variables then write to a new record. edit: sorry Yash.. I must have hit add reply before you posted your reply.. so basically i said the same thing!
  5. D

    duplicate values error

    I would recommend using an SQL string to insert rather than Addnew
  6. D

    duplicate values error

    using access db?
  7. D

    PHP includes

    can you give a little more code? are you calling the include AFTER the title? Take out the "." From $the_header .= "\t<title>".$title."</title>\n";
  8. D

    access to ms sql server (record lock problem)

    I agree with Stephen on this one... Try using Enterprise Manager
  9. D

    Magick Wand

    oooo neat.. thank you
  10. D

    access to ms sql server (record lock problem)

    i dont get it.. you converted to mssql but then you were still using the access ones?
  11. D

    Att: Manager of Windows Operation (Ticket# BPS-50645-633)

    emaytrix... i know you didnt ask for any comments on that site.. but the word "service" is spelled incorrectly on the bottom.. it is currently spelled "sevice"
  12. D

    ASP Security Problem

    you could also do include virtual instead of include file
  13. D

    Magick Wand

    thanks
  14. D

    Magick Wand

    it be web.jodoshared...
  15. D

    ASP Security Problem

    instead of using include... do server.execute("../inc/top.asp")
  16. D

    Magick Wand

    has anyone worked with animated gifs and image magick?
  17. D

    Syntax error in UPDATE statement.

    i did that... and then... AND the REAL reason it isnt working... you use a different variable name for email when you are making the sql string.. look at your original code.. i corrected it below <% username = Request.Form("username") password = Request.Form("password") firstName =...
  18. D

    Syntax error in UPDATE statement.

    try using this for your modify data page..... <% username = Request.Form("username") password = Request.Form("password") firstName = Request.Form("first") lastName = Request.Form("last") emailName = Request.Form("email") id = Request.QueryString("id") str = "UPDATE user_details...
  19. D

    Problem AspSmartUpload

    what is the error? I am not too good with debugging jscript.. since i hardly ever use it.. but i can try.
  20. D

    Syntax error in UPDATE statement.

    yea, if you are having trouble still.. post both your form input page and the asp page.
Back
Top