Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Dan J. Rychlik #1
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
-
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... -
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... -
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... -
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... -
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... -
Ney andré de mello zunino #2
Re: SQL statement
Dan J. Rychlik wrote:
Trying enclosing the whole SQL query string in double quotes.> $query = ('SELECT username, password, DATE_FORMAT(timestamp, '%d%m%y') FROM custlogon');
Regards,
--
Ney André de Mello Zunino
Ney andré de mello zunino Guest
-
David Robley #3
Re: SQL statement
In article <00ca01c3822e$d05406a0$f40d630a@compucom.local>,
[email]drychlik@tcsconsult.com[/email] says...Try> 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
$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
-
ccarterca #4
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
-
goerdie_uk #5
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



Reply With Quote

