Hi
I'm using Joomla 1.5 and installed the Form Component Breezeforms.
When i create a form, after submitting i get a E-Mail, but not with all filled form entries. I.e. i have 3 dropdown fields, 3 checkboxes and two radio buttons. I only receive the entries from the first dropdown and of the three checkboxes.
Further on i want to achieve to capture the url the form was sent from, becuase i have it on different sites.
For this i used the following PHP code:
function curPageURL() {
$pageURL = 'http';
if (!empty($_SERVER['HTTPS'])) {if($_SERVER['HTTPS'] == 'on'){$pageURL .= "s";}}
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80") {
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
It's working actually, but the main problem is and i don't know why, the form entries which aren't subitted.
I hope anyone can help me.
Thanks