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 |
How to replace a text in a string with another text in php?
What is the difference between single quoted string and double quoted string?
is php is the best for this situation
What is lazy loading in php?
Tell me how can we determine whether a php variable is an instantiated object of a certain class?
Does php need html?
How can we find the number of rows in a result set using PHP?
Can you explain, when to use if-else if-else over switch statements?
Why sessions are used in php?
What is the difference between get & post ?
What is the difference between print() and echo()?
What is var_dump function in php?