Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default SQL statement

    Hello,

    Im having a bit of trouble with the DATE_FORMAT function in mysql.

    $query = ('SELECT username, password, DATE_FORMAT(timestamp, '%d%m%y') FROM custlogon');

    I know its failing because php doesnt like the quotation before the format parameters. Ive tried to fix this without any luck. Any Ideas ?

    DATE_FORMAT ( timestamp, ' %d%m%y ')

    Thanks in advance,
    -Dan
    Dan J. Rychlik Guest

  2. Similar Questions and Discussions

    1. If Statement???
      guys i was wondering if anybody here could help me. I have a page done up with all dynamic text and attributes on it that come from a management...
    2. Use of FOR statement
      I am reading through a book on Objects and References and I don't understand this statement: $sum += $_ for split //; I thought a FOR...
    3. AW: if-else-statement
      --On Wednesday, September 03, 2003 11:56 PM +0200 "B. Fongo" <mygrps@fongo.de> wrote: Look at the docs for CGI.pm under pragmas, the -nosticky...
    4. if statement
      I'm trying to write an if statement i have two field, Status and Attendance. "status" value can be active or inactive "Attendance" value is active...
    5. IIF statement
      Assuming the data is being entered via a form, then use the AfterUpdate event of the control that is bound to the signature field. The code you need...
  3. #2

    Default Re: SQL statement

    Dan J. Rychlik wrote:
    > $query = ('SELECT username, password, DATE_FORMAT(timestamp, '%d%m%y') FROM custlogon');
    Trying enclosing the whole SQL query string in double quotes.

    Regards,

    --
    Ney André de Mello Zunino
    Ney andré de mello zunino Guest

  4. #3

    Default Re: SQL statement

    In article <00ca01c3822e$d05406a0$f40d630a@compucom.local>,
    [email]drychlik@tcsconsult.com[/email] says...
    > Hello,
    >
    > Im having a bit of trouble with the DATE_FORMAT function in mysql.
    >
    > $query = ('SELECT username, password, DATE_FORMAT(timestamp, '%d%m%y') FROM custlogon');
    >
    > I know its failing because php doesnt like the quotation before the format parameters. Ive tried to fix this without any luck. Any Ideas ?
    >
    > DATE_FORMAT ( timestamp, ' %d%m%y ')
    >
    > Thanks in advance,
    > -Dan
    Try
    $query = "SELECT username, password, DATE_FORMAT(timestamp, '%d%m%y') FROM
    custlogon";

    --
    Quod subigo farinam

    A: Because it messes up the order in which people normally read text.
    Q: Why is top-posting such a bad thing?
    A: Top-posting.
    Q: What is the most annoying thing on usenet?
    David Robley Guest

  5. #4

    Default sql statement

    here is the statement

    strSQL = "UPDATE SPECIALPAGE SET Title='" & Upload.Form("Title") & "',
    Description='" & Replace(Upload.Form("txtDescription"), "'", "''") &"' Where
    ID =" & Upload.Form("txtID")

    now i have a check box that i also need to update but i want to pass the
    checkbox as a numerical value, how would i i add that into my statement
    Active="& Replace(Upload.Form("cboActive")) im not sure???

    ccarterca Guest

  6. #5

    Default Re: sql statement

    when ive got stuff like this , make sure the statement works with hard coded values first , then add each variable one at a time to see which one screws it up.
    goerdie_uk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139