-
idwright committed patchset 79 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-08 19:00:27 UTC in phpmyfamily
-
idwright committed patchset 78 of module pmf2 to the phpmyfamily CVS repository, changing 6 files.
2009-10-05 20:46:39 UTC in phpmyfamily
-
idwright committed patchset 77 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-05 20:44:00 UTC in phpmyfamily
-
idwright committed patchset 76 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-05 20:43:27 UTC in phpmyfamily
-
idwright committed patchset 75 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-03 20:36:11 UTC in phpmyfamily
-
idwright committed patchset 74 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-03 20:35:43 UTC in phpmyfamily
-
idwright committed patchset 73 of module pmf2 to the phpmyfamily CVS repository, changing 1 files.
2009-10-03 20:35:22 UTC in phpmyfamily
-
I'm still on the older version of those but this should fix the problem for either
I've got a UK keyboard so it's completely different :-) - it's the back tick not the single quote/apostrophe
it's pretty safe to try it out or copy and paste it from the message.
2009-09-02 19:31:23 UTC in phpmyfamily
-
It might be that your version of MySQL has been upgraded
I think the solution is to surround condition with ` so the statement becomes:
INSERT INTO ft_census( person_id, census, schedule, address, `condition` , age, profession, ...
2009-09-02 13:29:51 UTC in phpmyfamily
-
Try changing line 132 in passthru.php to report the error - that should give a clue...
Old:
$iresult = mysql_query($iquery) or die($err_census);
New:
if(!($iresult = mysql_query($iquery))) {
echo mysql_error();
echo "<br/>".$iquery;
die($err_census);
}.
2009-08-20 11:07:04 UTC in phpmyfamily