0 Reputation Points
100% Quality Score
- Upvotes Received
- 2
- Posts with Upvotes
- 1
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
2 Posted Topics
HI IN your code look FOR 'move_uploaded_file' function, you might have set the target path , i.e. the folder you want to upload the Image, use the code shown below $target_path = $target_path_base . str_replace(' ','', $_FILES['uploadedfile']['name']); move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path) SHOULD WORK ... Best KP'S
Hi benkus, Please change the following setting for your database: MySQL charset : UTF-8 Unicode (utf8) MySQL connection collation : utf8_general_ci MySQL collation : utf8_general_ci You can also try this : After selecting database mysql_select_db(dbname); use mysql_query('set names "utf8"'); Hope this help.. KPs
The End.
imvivekkapoor