Reputation: 141
I am using codeigniter 3.1 .
How to change upload text language ?
<input type="file" name="userfile" />
I want to change Choose File - No file chosen
default English language to other.
I tried this but not worked.
<input type="file" name="userfile" value="new language" />
Upvotes: 0
Views: 767
Reputation: 38672
Try this
$file = $_FILE['file'];
if(empty($file))
{
echo "Custom Error message";
}
Or with system file edit
path - 'system/language/english/upload_lang.php'
Line 47
$lang['upload_no_file_selected'] = 'You did not select a file to upload.';
Upvotes: 3