Mehur
Mehur

Reputation: 141

How to change upload text language codeigniter?

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" />

Image

Upvotes: 0

Views: 767

Answers (1)

Abdulla Nilam
Abdulla Nilam

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

Related Questions