PDA

View Full Version : don't know what to do with this script, help me


deathemperor
03-20-2004, 05:36 AM
<html>
<head>
<title>Images Upload</title>
<meta http-equiv=Content-Type content=text/html; charset=utf-8>
<style type="text/css">
A:link {
COLOR: #333333; FONT-FAMILY: Tahoma, Arial, Verdana; TEXT-DECORATION: underline
}
A:visited {
FONT-SIZE: 11px; COLOR: #333333; FONT-FAMILY: Tahoma, Arial, Verdana; TEXT-DECORATION: underline
}
A:hover {
COLOR: #777777; FONT-FAMILY: Tahoma, Arial, Verdana; TEXT-DECORATION: none
}
A:active {
COLOR: #777777; FONT-FAMILY: Tahoma, Arial, Verdana; TEXT-DECORATION: underline
}
BODY {
SCROLLBAR-FACE-COLOR: #f2f2f2; FONT-SIZE: 11px; MARGIN: 0px; SCROLLBAR-HIGHLIGHT-COLOR: #f2f2f2; SCROLLBAR-SHADOW-COLOR: #f2f2f2; SCROLLBAR-3DLIGHT-COLOR: #ffffff; SCROLLBAR-ARROW-COLOR: #626262; SCROLLBAR-TRACK-COLOR: #fdfdfd; FONT-FAMILY: Tahoma, Arial, Verdana; SCROLLBAR-DARKSHADOW-COLOR: #c6c5c5; BACKGROUND-COLOR: #ffffff
}
TABLE {
FONT-SIZE: 11px; COLOR: #333333; FONT-FAMILY: Tahoma, Arial, Verdana
}
.main-form {
BORDER-RIGHT: #999999 1px solid; BORDER-TOP: #999999 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #999999 1px solid; COLOR: #333333; BORDER-BOTTOM: #999999 1px solid; FONT-FAMILY: Tahoma, Arial, Verdana; BACKGROUND-COLOR: #fdfdfd
}
.main-table {
PADDING-LEFT: 4px; PADDING-BOTTOM: 4px; PADDING-TOP: 4px; PADDING-RIGHT: 4px
}
</style>
</head>

<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
<tr>
<td width="100%" height="100%">

<?
include("path.php");
if ($upload && $_GET["upload"]=="ok" && $file)
{
if ($file_type!="image/gif" && $file_type!="image/pjpeg" && $file_type!="image/png")
{
echo "
<table width=414 border=0 cellpadding=0 cellspacing=0 align=center>
<tr>
<td width=414 height=13 align=center valign=top class=main-table><strong>IMAGES UPLOAD </strong></td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=22 align=center valign=top class=main-table>
Error ! This extension is not support. Please chose another file
</td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>

</table>
";
}
else
{
$dir="store";
$link="http://".$root.$dir;
$uf=$dir."/".$file_name;
$upload=@copy($file,$uf);
if (!$upload)
{
echo "
<table width=414 border=0 cellpadding=0 cellspacing=0 align=center>
<tr>
<td width=414 height=13 align=center valign=top class=main-table><strong>IMAGES UPLOAD </strong></td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=22 align=center valign=top class=main-table>
Error ! Can not upload, please try again or check your path.
</td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=12></td>
</tr>

</table>
";
}
else
{

echo "<table width=414 border=0 cellpadding=0 cellspacing=0 align=center>
<tr>
<td width=414 height=13 align=center valign=top class=main-table><strong>File upload sucessfully </strong></td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=22 align=center valign=top class=main-table>
Preview <br>
<img src=$link/$file_name border=0>
</td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=13 align=center valign=middle class=main-table>Your images url<br>
<textarea name=textarea cols=50 class=main-form rows=4>$link/$file_name</textarea> </td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=13 align=center valign=middle class=main-table>Affiliate link | Copy and put this link where u wanna add this button <br>
<textarea name=textarea cols=50 class=main-form rows=4><a href=$link/$file_name target=blank><img src=$link/$file_name border=0 width=88 height=31></a></textarea> </td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=13 align=center valign=top class=main-table> [ <a href=?>Upload another</a> ] <br> </td>
</tr>
</table>";
}
}
}
else
{
echo "
<table width=414 border=0 cellpadding=0 cellspacing=0 align=center>
<form method=post action=index.php?upload=ok enctype=multipart/form-data>
<tr>
<td width=414 height=13 align=center valign=top class=main-table><strong>IMAGE HOSTING</strong></td>
</tr>

<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=22 align=center valign=top class=main-table><input name=file type=file class=main-form size=50> </td>
</tr>
<tr>
<td height=13 align=center valign=middle class=main-table><input name=upload type=submit class=main-form id=upload value=upload></td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=13 align=center valign=top class=main-table>Note : These files with extension name <strong>GIF</strong> | <strong>PNG</strong> | <strong>JPG</strong> are accepted</td>
</tr>
<tr>
<td height=13 align=center valign=top class=main-table>All Images are copyright to their respective owners.</td>
</tr>
<tr>
<td height=12>
Any problem please contact: <a href="http://www.site.com">deathemperor at site.com</a>, Create by ABC@hotmail.com</td>
</tr>
</form>
</table>";
}
?>
</td>
</tr>
</table>
</body>
</html>
it shows: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in index.php on line 170
170 is "Any problem please contact: <a href="http://www.site.com">deathemperor at site.com</a>, Create by ABC@hotmail.com"
if I remove the <a> tag, it works but I want to hyper link it
any idea ?

AN-net
03-20-2004, 06:10 AM
<a href=\"what ever link url \">

deathemperor
03-20-2004, 06:48 AM
yay, my bad, have thought that but didn't try >_< thank you
btw how to let people upload zip file ?

deathemperor
03-24-2004, 07:04 AM
in the above script, how to check if a file aready there, if not, accept it for uploading, if yes, print a error message.
I've tried below be can seem to make it go fine >_<
if (file_exists($file_name)) {
echo"
<table width=414 border=0 cellpadding=0 cellspacing=0 align=center>
<tr>
<td width=414 height=13 align=center valign=top class=main-table><strong>IMAGES UPLOAD </strong></td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=22 align=center valign=top class=main-table>
File already exists, Please change the filename or try another one.
</td>
</tr>
<tr>
<td height=100% bgcolor=#333333></td>
</tr>
<tr>
<td height=12></td>
</tr>

</table>"; }

deathemperor
03-29-2004, 02:26 AM
Please, any one please...

Velocd
03-29-2004, 04:13 AM
There is a really interesting file-upload class here (http://www.sitepoint.com/forums/showthread.php?t=160561&highlight=uploading), but it might be beyond your level.

View the following article which explains file system handling:
http://www.sitepoint.com/forums/showthread.php?t=122279&highlight=uploading

Ignore the image gallery stuff, and just pick up the upload concepts.

It's hard to help with your problem since I don't know enough of the specifics. I also recommend you not combine your HTML with PHP, it's a horrible practice. Look into a templating system, like Smarty (http://smarty.php.net).

deathemperor
03-29-2004, 09:05 AM
so bad I still cannot deal with that
I got problem with setting directory for uploaded file >_<