More than 2 file field.
I have a form where there are 4 file fields. I want all of these file fields to be uploaded to a folder. I can do one. But how to do for all four file field at once? Do i need to use universal email for four separately & add?
I have a form where there are 4 file fields. I want all of these file fields to be uploaded to a folder. I can do one. But how to do for all four file field at once? Do i need to use universal email for four separately & add?
you need a separate file upload behavior for each file that is added.
i just applied one. but file isn't uploading & even data not entering in DB.
in insert record for img i selected this:
well i found it. Again the error was cos of folder security. sorry to disturb you
regards
to troubleshoot:
add the following code at line 1 to turn on error reporting:
<?php
error_reporting(E_ALL);
ini_set('display_errprs','on');
var_dump($_FILES);
?>
remove the redirect in the insert behviaor, change:
$WA_redirectURL = "property_Detail.php";
to:
$WA_redirectURL = "";
and add the following code on the page body to write the insert SQL and the WA UPload debug information:
<?php if(isset($_POST["Insert_x"])){ ?>
<?php echo($WA_Sql); ?><br />
<?php echo WA_DFP_AllUploadsDebug(); ?><br />
<?php var_dump($_FILES); ?><br />
<?php } ?>
post back the results after trying the insert again.
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.