|
|
 |
Re: FN-FORUM: Sorry, I'm back again ..... anyone any experience of Fabrik Component in Joomla? .. or maybe its just the php I've screwed up!
date posted 9th May 2008 14:16
Try inserting:
echo mysql_error();
After your mysql_query() to see what the problem is.
Also, make sure you've removed any quotes. Add something like:
if (!get_magic_quotes_gpc()) {
$formField=addslashes($formField);
}
for each of the $_REQUEST s. Not only could this cause the query to fail but
is a security risk.
Nigel.
----- Original Message -----
From: [EMAIL REMOVED] [EMAIL REMOVED]
To: [EMAIL REMOVED]
Sent: Friday, May 09, 2008 3:22 PM
Subject: FN-FORUM: Sorry, I'm back again ..... anyone any experience of
Fabrik Component in Joomla? .. or maybe its just the php I've screwed up!
>
> OK, things are working great now on the form, but now the client has asked
> for additional information that is currently being emailed, to be added to
> the database (previously only certain fields were stored).
>
>
|
 |
|