Hi, I just started my web site.. http://silverstars.jt7.net and I really need suggestions, feedback and honest opinions about the site!
Thanks!
Thanks!
Last edited:


Ahhh, sorry, I should remove the "annoying" part..hotrodtodd said:Well... I would have liked to add some of my artwork but I don't have a site up that i can link to. You said that getting email attachments are annoying so I didn't. you should have a form for submitting photos that you could review for submission.
A simple php upload script would work.
I have one if you would like to use it.
Yes, I know..MalinRepair said:A bit simple, but you should really get a domain...
hotrodtodd said:Here is that php upload script
<?php
/////////////////////////////////////////////
// Variables to change //
/////////////////////////////////////////////
$thePassword = "passwordhere"; //YOUR PASSWORD
$uploadpath = "path/to/uploadto/"; //PATH TO UPLOAD FILES TO (EG C:\windows\ OR /usr/home/mydomain/htdocs/)
/////////////////////////////////////////////
// Do not edit beyond here //
/////////////////////////////////////////////
$password = $_POST['password'];
if (!$password) {
echo "<form method='post' action='$PHP_SELF'>PASSWORD: <input type='password' name='password' size='25'><input type='submit'></form>";
} else {
if ($password == $thePassword) {
if ($_POST['yes'] == "1") {
$source = $_FILES['file']['tmp_name'];
$dest = $uploadpath.$_FILES['file']['name'];
move_uploaded_file($source, $dest);
echo "<b>File should now be uploaded</b><br><br>";
}
echo "<p>File can be no larger than ";
echo ( ini_get( upload_max_filesize ) );
echo "<form action='" . $PHP_SELF . "' method='post' enctype='multipart/form-data'><input type='hidden' name='yes' value='1'><input type='hidden' name='password' value='" . $password . "'>File to upload: <input type='file' name='file'><br><br><input type='submit'></form><br><a href=images/'" . $_POST['yes'] . "'>view the pic<a/>" ;
} else {
echo "Incorrect password. <form method='post' action='" . $PHP_SELF . "'>PASSWORD: <input type='password' size='25'><input type='submit'></form>";
}
}
?>
yeah, cause I know 100% about HTML.unknowngiver said:way 2 simple...u need a better layout




