• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Upload File Prefix - Date and Name

Upload File Prefix - Date and Name 10 years 8 months ago #28496

  • webhead5
  • webhead5's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
In separate forms I can have a prefix with the name and with the date. I would like both to be on the same form. Here is the code that I am using for the date:
return date('n_j_y_h:i A', time());

Here is what I am using for the name:
return $_POST['form']['name'];

FYI, my "name" field is a lowercase n. I have tried numerous combinations of the two but I cannot successfully return Date Name Filename. Thank you for your assistance. Dan.
The administrator has disabled public write access.

Upload File Prefix - Date and Name 10 years 8 months ago #28506

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
You can try using the code below:
//<code>
return $_POST['form']['field_name']."_".date('n_j_y_h_i_A', time())."_";
//</code>

Please relate to the following forum post:

http://www.rsjoomla.com/forum/37-rsform-pro/15825-change-file-prefix-to-first-name-from-form.html#27842
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!