Jump to content

Rigo

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Rigo's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi everyone. I'm pretty new to php, and I figured i would start by learning simple and useful scripts. I found this upload script in a tutorial online, but it doesn't seem to work. What's wrong? <?php //set where you want to store files //in this example we keep file in folder upload //$HTTP_POST_FILES['ufile']['name']; = upload file name //for example upload file name cartoon.gif . $path will be upload/cartoon.gif GLOBAL $HTTP_POST_FILES; $path= "upload/".$HTTP_POST_FILES['ufile']['name']; if($ufile != null) //this line was at first if($ufile != none), but i got the error: undefined variable 'none' { if(copy($HTTP_POST_FILES['ufile']['tmp_name'], $path)) { echo "Successful<BR/>"; //$HTTP_POST_FILES['ufile']['name'] = file name //$HTTP_POST_FILES['ufile']['size'] = file size //$HTTP_POST_FILES['ufile']['type'] = type of file echo "File Name :".$HTTP_POST_FILES['ufile']['name']."<BR/>"; echo "File Size :".$HTTP_POST_FILES['ufile']['size']."<BR/>"; echo "File Type :".$HTTP_POST_FILES['ufile']['type']."<BR/>"; echo "<img src=\"$path\" width=\"150\" height=\"150\">"; } else { echo "Error"; Now when I run the code, i simply get "Error". This is the code that retrieves and send the variables to the upload script. <table width="500" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC"> <tr> <form action="upload_ac.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <td> <table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF"> <tr> <td><strong>Single File Upload </strong></td> </tr> <tr> <td>Select file <input name="ufile" type="file" id="ufile" size="50" /></td> </tr> <tr> <td align="center"><input type="submit" name="Submit" value="Upload" /></td> </tr> </table> </td> </form> </tr> </table>
  2. Well.....It's a metrological institution, the make forecasts of the weather, and put in on the net as .jpg's. But is it possible to make a link that changes every day??
  3. OK, so i am making a link to a picture, to show on my site, but everyday, the link changes because they put up a picture with a new name. So what do I do? I can't update the link everyday, there must be an easier solution?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.