Hello Bob,
I need one more assistance from you. I have a form with a drop down option of catalogues that a site visitor may want to download when a visitor chooses from the drop down the relevant file is attached to his email with the below code:
I want to modify this code that can redirect to the link directly tas per the dropdown choice made by the visitor. I have over 50 catalogs that can be chosen in the dropdown.
Thanks for all the help. Best wishes
Ronn
I need one more assistance from you. I have a form with a drop down option of catalogues that a site visitor may want to download when a visitor chooses from the drop down the relevant file is attached to his email with the below code:
< ? php
switch ($_POST['download'])
{
case 'Glass Catalogue - 2015':
$form->files['catalog'] = array(
'path' => '/home/xxxx/public_html/cat/glass_.pdf'
);
break;
case 'Cut Glass Catalogue - 2014':
$form->files['catalog'] = array(
'path' => '/home/xxxx/public_html/cat/cut_glass.pdf'
);
}
?>
I want to modify this code that can redirect to the link directly tas per the dropdown choice made by the visitor. I have over 50 catalogs that can be chosen in the dropdown.
Thanks for all the help. Best wishes
Ronn
Hello Ronn,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I link a datepicker to an image or link?
How can I show data linked to a drop-down option?
How can I show a Thanks Message then redirect the user?
P.S: I'm just an automated service😉
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I link a datepicker to an image or link?
How can I show data linked to a drop-down option?
How can I show a Thanks Message then redirect the user?
P.S: I'm just an automated service😉
Hi Ronn,
You could use this same code to create a parameter to use in the ReDirect action.
I'm not certain that ReDirecting to a download link will work neatly???
Bob
You could use this same code to create a parameter to use in the ReDirect action.
I'm not certain that ReDirecting to a download link will work neatly???
Bob
This topic is locked and no more replies can be posted.