How to add different images in php program like a job
site.......
Answers were Sorted based on User's Feedback
Answer / anand prakash
$img_name=$_FILES[img_var][temp_name];
$img_path="/images";
$img_test=move_uploaded_file($img_name, $img_path);
if($img_test){
Image uploaded successfully.
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anand prakash
move_uploaded_file ( string $filename , string $destination )
| Is This Answer Correct ? | 1 Yes | 1 No |
i want to need upload above 100mb file,i was successfully upload 75mb using .htaccess file ,but i can put 101mb file,it was not upload..please give some tips..local server its work perfectly but online it doesn't work.. .htaccess file details AddHandler application/x-httpd-php .php php_value post_max_size 200M php_value upload_max_filesize 200M php_value memory_limit 300M php_value output_buffering on php_value max_execution_time 259200 php_value max_input_time 259200 php_value session.cookie_lifetime 0 php_value session.gc_maxlifetime 259200 php_value default_socket_timeout 259200
What is explode() in php?
In what are the ways you can encrypt the password ?
What are the 5 types of variables?
If the variable $var1 is set to 10 and the $var2 is set to the character var1, what's the value of $$var2?
What is user defined function in php?
What are the functions for imap?
What are the different components used in php for formatting?
How to know user has read the email-php?
What are default session time and path?
How to select a database in php?
So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?