|
500466 6/14/2009 |
I have used this also with no luck: global $dal; $dal->participation->Value["credit hours"] = $values["credit hours"]; $dal->participation->Param["District"] = $values["District"]; $dat->participation->Update(); unset($values["credit hours"]); return true
|
G
|
garethpDevClub member 6/14/2009 |
Hi global $conn; $strUpdate = "update parts set audit=now() where part='".$values["part"]."'"; db_exec($strUpdate,$conn);
|
G
|
garethpDevClub member 6/14/2009 |
Hi |
|
500467 6/14/2009 |
Thank you!! I'm past that issue...but now I have another.
|
G
|
garethpDevClub member 6/14/2009 |
Hi global $conn; $strUpdate = "UPDATE participation set `credit hours` = '".$values["credit hours"]."' where District='".$values["District"]."'"; db_exec($strUpdate,$conn)
|
|
500468 6/14/2009 |
Thanks! |
|
500469 6/14/2009 |
Thanks garethp for all the help today. It worked. |
|
500470 6/14/2009 |
I got it working. for some reason the > return true; was not added. I'm sure I deleted it. But it is all working now!! |