T
|
tedwilder 10/16/2010 |
i would try something like |
U
|
umanga author 10/17/2010 |
i would try something like $sql="update * from tablename set columname where Model_No=".$_Session["modelno"]; $rs=CustomQuery($sql); $dataresult=db_fetch_array($rs); you need to try your sql syntax out of phprunner : ( navicat lite ( free) or phpmyadmin) are great to debug sql statement.( my example wont actually work it's just an idea where to place your sql update request). also chek mysql UPDATE syntax : http://dev.mysql.com/doc/refman/5.0/en/update.html
|