Hi
I try this code:
I wrote this code On server Side Validation but had no luck, no errors, nothing.
works fine and shows the value os $pasta
What I'm doing wrong?
Thank you
I try this code:
<?php
$pasta=$_POST['text_1'];
echo $pasta;
$seachpath='C:\xampp\xampp\htdocs\joomla\uploads';
!JFolder::create($searchpath . DS . $pasta) ;
?>
I wrote this code On server Side Validation but had no luck, no errors, nothing.
echo $pasta
works fine and shows the value os $pasta
What I'm doing wrong?
Thank you
Hi Lopezio,
Which version of ChronoForms and Joomla! are you using?
And what exactly do you need to do?
Bob
Which version of ChronoForms and Joomla! are you using?
And what exactly do you need to do?
Bob
Hi friend
Version joomla 1.5
Chronoforms 3.2
I need to create a folder with one session varible
Version joomla 1.5
Chronoforms 3.2
I need to create a folder with one session varible
It works with this code and is enough for me
btw I wrote this code in formcode after send emails
<?php
$pasta=$_POST['text_1'];
!JFolder::create('C:\xampp\xampp\htdocs\joomla\uploads\Grupo1'.DS.$pasta) ;
?>
btw I wrote this code in formcode after send emails
Hi lopezio,
Great, good to see that you;ve found something that does what you need.
If you need custom folders of file names for ChronoForms v3 then there is a document you can get for a few dollars here that gives you a couple of ways of setting dynamic file and folder names that will be used in the file uplaod process.
Bob
Great, good to see that you;ve found something that does what you need.
If you need custom folders of file names for ChronoForms v3 then there is a document you can get for a few dollars here that gives you a couple of ways of setting dynamic file and folder names that will be used in the file uplaod process.
Bob
This topic is locked and no more replies can be posted.