QUOTE(loverboy420 @ Jul 30 2009, 01:25 PM)

I asked that how to do this using PHP.
Now, plz help me only 1 last time.

I'll be your thankful.
I don't understand what you mean... PHP is a scripting language - it has nothing to do with the visual side of things; that's what HTML and CSS is for. If you want to change what the output looks like from the PHP, you have to adjust the HTML/CSS that it outputs. I'd suggest creating a CSS style for your
box and applying that within the code:
(Prefixed http://)CODE
echo '<div class="file-uploaded-box">Your file upload was successful, view the file here: <a href="http://' . $upload_path . $filename . '" title="Your File">' . $_SERVER['SERVER_NAME'] . $upload_path . $filename . '</a></div>';
I'll let you control the CSS yourself as you know what you want, but an example (from what I imagine you mean by a box) would be:
CODE
.file-uploaded-box { margin: 1em; padding: 1em; border: 1px solid #000; }