Thanks for answering! Well, here's the part of my code(in php) that doesn't work:
Code:
while(is_string($w))
{
if($w)
{
$msg .= "<a href=\"C:\files\\$w\" target=\"_new\" type=\"--don't know what type to write--\">$count.$w</a><br><br>";
$count++;
}
$w = strtok(";");
}
$msg .= "</p>";
I want a type that always pops up the download dialog(and then download the file) without checking what the type of the file is, if there's one that does so. I've searched through some web pages with that information(media types), but I can't find anything!
Bookmarks