Hi,
I downloaded the php-pages component from this site and added a php page named contactform. This contactform works perfectly when I run it in a wrapper but then I don't have the same looks as my website.
The contactform uses a captcha-field and when I enter the code it keeps saying I entered it wrong (though in a wrapper it works perfectly)
I searched this forum and found this:
<form method="post" action="' . $filename . '">
<input type="...
The $filename = index.php?option=com_php&Itemid=20
When I try the next example, after submit I get: "Please choose a File", so I guess it does nothing with the hidden fields. Is their something I need to additionally add to the script?
<form method="post" action="' . $filename . '">
<input type="hidden" name="option" value="com_php">
<input type="hidden" name="Itemid" value="20">...
The $filename = index.php
What am I doing wrong?