Hi
I have problem with validation of multiple sections.
I do not know too good php, and sorry for my english.
My code:
$result='SzerokośćWysokośćFelcKolor ramkiNazwa ProfiluOścieżnicaSkrzydłoIlośćUwagiTyp';
for($i=0;$icount($typ);$i+){
$result.='';
$result.=''.$szerokosc.'';
$result.=''.$wysokosc.'';
$result.=''.$wykon.'';
$result.=''.$kolor.'';
$result.=''.$profil.'';
$result.=''.$osciez.'';
$result.=''.$szkrz.'';
$result.=''.$ilosc.'';
$result.=''.$uwagi.'';
$result.=''.$typ.'';
$result.='';
}
$result.='';
It is checked only the first section, after adding the next section code does not check it anymore.
Also do you have solution for send pdf by mail after click custom button which shows in "Exit Layouts", after calculation (something like submit button).
Please help.
Maciek
Hello,
please double check the first line of the for section, one + sign is missing from the last part
for(.........;$i++){
$i is in charge of incrementing the index to be checked, so it can be the origin of your issue.
About pdf generation, at this time can't be emailed AFTER the calculation has been shown. The example shows how to generate the pdf when calculate button is clicked, and email it attached, but it executed at the same time the rest of the calculations. In order to add a next step button with this function some custom code should be added.
If you're interested in a custom version, please place a ticket at the helpdesk, and we'll study which would be the best approach to get this.
Thank you, best regards
Thanks for answer.
About sections i have paste code without + , sorry.
Below is my code and still validation checks only first section.
Is this possible to add two mail adress for default send mail button?
$metr=1000000;
$result='SzerokośćWysokośćFelcKolor ramkiNazwa ProfiluOścieżnicaSkrzydłoIlośćIlość w mkwTyp';
for($i=0;$icount($typ);$i+){
$result.='';
$result.=''.$szerokosc.'';
$result.=''.$wysokosc.'';
$result.=''.$wykon.'';
$result.=''.$kolor.'';
$result.=''.$profil.'';
$result.=''.$osciez.'';
$result.=''.$szkrz.'';
$result.=''.$ilosc.'';
$result.=''.$mkw=($szerokosc*$wysokosc*$ilosc)/$metr.' mkw';
$result.=''.$typ.'';
$result.='';
$result.='';
$result.='Uwagi';
$result.='';
$result.=''.$uwagi.'';
$result.='';
}
$result.='';
Thanks for answer.
About sections i have paste code without + , sorry.
Below is my code and still validation checks only first section.
Is this possible to add two mail adress for default send mail button?
$metr=1000000;
$result='SzerokośćWysokośćFelcKolor ramkiNazwa ProfiluOścieżnicaSkrzydłoIlośćIlość w mkwTyp';
for($i=0;$icount($typ);$i+){
$result.='';
$result.=''.$szerokosc.'';
$result.=''.$wysokosc.'';
$result.=''.$wykon.'';
$result.=''.$kolor.'';
$result.=''.$profil.'';
$result.=''.$osciez.'';
$result.=''.$szkrz.'';
$result.=''.$ilosc.'';
$result.=''.$mkw=($szerokosc*$wysokosc*$ilosc)/$metr.' mkw';
$result.=''.$typ.'';
$result.='';
$result.='';
$result.='Uwagi';
$result.='';
$result.=''.$uwagi.'';
$result.='';
}
$result.='';
Hello,
saw you placed a helpdesk ticket, we'll continue support from there.
Thank you, best regards
Hi
I have problem with validation of multiple sections.
I do not know too good php, and sorry for my english.
My code:
$result='SzerokośćWysokośćFelcKolor ramkiNazwa ProfiluOścieżnicaSkrzydłoIlośćUwagiTyp';
for($i=0;$icount($typ);$i+){
$result.='';
$result.=''.$szerokosc.'';
$result.=''.$wysokosc.'';
$result.=''.$wykon.'';
$result.=''.$kolor.'';
$result.=''.$profil.'';
$result.=''.$osciez.'';
$result.=''.$szkrz.'';
$result.=''.$ilosc.'';
$result.=''.$uwagi.'';
$result.=''.$typ.'';
$result.='';
}
$result.='';
It is checked only the first section, after adding the next section code does not check it anymore.
Also do you have solution for send pdf by mail after click custom button which shows in "Exit Layouts", after calculation (something like submit button).
Please help.
Maciek