Hi,
I need help with browsing file.
I have made a news script and I want to put a picture near every news. So I need an input with wich I could browse files and select a picture that could be added to teh news.
The problem is that I dont want to upload files, yhe pictures are allready on my site.
I tried this code:
.....
<td>
<input type="file" name="url">
</td>
........
//then
<?php
$query = "INSERT INTO news
(date, title, news, category, url) VALUES
('$_POST[date]', '$_POST[title]', '$_POST[news]', '$_POST[category]',
'$_POST[url]');";
?>
But the $_POST[url] doesnt work :/ it is empty.