hello all i need one help
sorry if there is answered this question byt i didnt find it
i need one form it will have
text box
upload box
and send
everything its working byt the mails what i get dont have the image what is in attachment they have only the img title
how to fix that
and how to make it utf-8 all
thanks
bye
sorry if there is answered this question byt i didnt find it
i need one form it will have
text box
upload box
and send
everything its working byt the mails what i get dont have the image what is in attachment they have only the img title
how to fix that
and how to make it utf-8 all
thanks
bye
Hi, this is Snake ? 😀 :wink: (Metalgear!!)
look at our faqs for one called "my file doesn't get uploaded", you need to add the enctype to the form tag attachment!
Let me know! you can contact me in the radio, if you are snake of course!😉😀
Cheers
Max
look at our faqs for one called "my file doesn't get uploaded", you need to add the enctype to the form tag attachment!
Let me know! you can contact me in the radio, if you are snake of course!😉😀
Cheers
Max
sorry im not snake, :wink:
i couldnt find the thread
could you give me link
and what about utf-8 how to fix that
to edit all php files on head to put corect encoding of somehow else
thanks
bye
i couldnt find the thread
could you give me link
and what about utf-8 how to fix that
to edit all php files on head to put corect encoding of somehow else
thanks
bye
Hi MetalGear,
Sorry, I thought you are snake, he is MetalGear too!
try to add enctype="multipart/form-data" to the form tag attachment field in the general tab!
whats exactly is not in UTF-8 ?
Regards
Max
Sorry, I thought you are snake, he is MetalGear too!
try to add enctype="multipart/form-data" to the form tag attachment field in the general tab!
whats exactly is not in UTF-8 ?
Regards
Max
no still dont get the attachment
on File Uploads tab
what shoud put here
now its empty
and utf-8 need for when i create text box and write with utf8 characters later i get ?????
also for text, button ets
what php files should i edit and on head to add utf8 encoding
and if you can show me how to create form
it should have only
text
text box
upload
button
thanks
bye
on File Uploads tab
Field names & allowed Extensions & sizes(KB) for each:
E.g: file_2:jpg|doc|zip{222222-1},file_3:gz|zip{99999999-0}
extensions should be in low case!
what shoud put here
now its empty
and utf-8 need for when i create text box and write with utf8 characters later i get ?????
also for text, button ets
what php files should i edit and on head to add utf8 encoding
and if you can show me how to create form
it should have only
text
text box
upload
button
thanks
bye
Hi,
please show me a screenshot for the file uploads tab and the general tab of your form!
you should not edit any files, you should get your UTF8 results fine, I think this is some issue with your website or your theme!
Regards
Max
please show me a screenshot for the file uploads tab and the general tab of your form!
you should not edit any files, you should get your UTF8 results fine, I think this is some issue with your website or your theme!
Regards
Max

about utf-8 its not problem i will put the form as a module and on content wil write the text
could you somehow if you have time make one form and send me
it should have
text (or textbox doesnt mather)
url
attachment
and send button
Hi,
you don't have enctype="multipart/form-data" in the form tag attachment in general tab!!!
and you don't have a valid uploads string, you need to follow the example in red color strictly, so its file_5:{999999999-0} , that's because you didn't set this in the wizard I think!
Regards
Max
you don't have enctype="multipart/form-data" in the form tag attachment in general tab!!!
and you don't have a valid uploads string, you need to follow the example in red color strictly, so its file_5:{999999999-0} , that's because you didn't set this in the wizard I think!
Regards
Max
i needed to put and image formats on there byt its working now
need one favore, since dont work with my characters and i have button
one is for atachment and one for submit
is it posible to make button images and put there or somehow with external css to make the buttons
thanks

or all form to be external css editable
so can fit with the rest design
thank
need one favore, since dont work with my characters and i have button
one is for atachment and one for submit
is it posible to make button images and put there or somehow with external css to make the buttons
thanks

or all form to be external css editable
so can fit with the rest design
thank
Hi, you can add some CSS to the submit button yes but teh attach button will not work with CSS because it has different browsers look!
Regards
Max
Regards
Max
could you give me some example css what can implement and where to put
thanks
thanks
show me your form code please!
Max
Max
this is
Form HTML:
thanks
Form HTML:
<div class="form_item"><div class="form_element cf_textarea"><label class="cf_label"></label><textarea class="cf_inputbox" rows="4" id="text_1" cols="25" name="text_1"></textarea></div><div class="clear">Â </div></div><div class="form_item"><div class="form_element cf_fileupload"><label class="cf_label"></label><input class="cf_inputbox" size="20" id="file_3" name="file_3" type="file"></div><div class="clear">Â </div></div><div class="form_item"><div class="form_element cf_button"><input value="Submit" name="undefined" type="submit"></div><div class="clear">Â </div></div>
thanks
Good, at your code, change this code :
to
at the top of the form code, add :
I didn't test the code above but this is the theory, you can google for how to change css for buttons!
Regards
Max
<input value="Submit" name="undefined" type="submit">
to
<input value="Submit" class="submitbutton" type="submit">
at the top of the form code, add :
<style>
.submitbutton{
color:#ff0000; // add any css here
}
</style>
I didn't test the code above but this is the theory, you can google for how to change css for buttons!
Regards
Max
thanks, in meantime i edit the code litl
couse when i write with utf-8 characters it show me ???
<div class="form_item">
<div class="form_element cf_button">
<input TYPE="IMAGE" SRC="/images/36.jpg" width="100" height="20" class="submitbutton" type="submit">
</div>
<div class="clear">Â
</div>
</div>
and its working perfect
thanks for all
couse when i write with utf-8 characters it show me ???
<div class="form_item">
<div class="form_element cf_button">
<input TYPE="IMAGE" SRC="/images/36.jpg" width="100" height="20" class="submitbutton" type="submit">
</div>
<div class="clear">Â
</div>
</div>
and its working perfect
thanks for all
Good, show me your final code which will work with UTF-8.
Regards
Max
Regards
Max
Can show me the code which work with UTF-8 ,
I need for label on left text box!
Thanks very much !
I need for label on left text box!
Thanks very much !
I think he edited the post and added the code, he replaced the button text with an image! I'm sure that the problem is related to the database charset or either the table or the table's fields charset, check this carefully!
Regards
Max
Regards
Max
This topic is locked and no more replies can be posted.