Posted by Mateusz Markowski on 10/08/06 15:42
Garry Jones napisal(a):
> $upgcollect='SELECT scfpwd1 FROM scfmforening WHERE scfmnum = $scfchknum';
After it $upgcollect containts such string: "SELECT scfpwd1 FROM
scfmforening WHERE scfmnum = $scfchknum". $scfchknum was not changed on
its value. You should have written:
$upgcollect="SELECT scfpwd1 FROM scfmforening WHERE scfmnum =
$scfchknum";
or
$upgcollect='SELECT scfpwd1 FROM scfmforening WHERE scfmnum =
'.$scfchknum;
Navigation:
[Reply to this message]
|