How can I get My Users for this chat I'm Working on. I have been trying this code...
HTML
<form action="uploadavatar.php" method="post" enctype="mulipart/form-data">
<input type="file" name="file" />
<input type="submit" name="submit" class="button" />
</form>
PHP
<?php
if (move_uploaded_file($_FILES['file']['tmp_name'], "../avatar/")) {
print "Received {$_FILES['file']['name']} - its size is {$_FILES['userfile']['size']}";
} else {
print "Upload failed!";
}
?>
Here's the URL to my beta right now.
http://vago.x10.mx/chat3/index.php
HTML
<form action="uploadavatar.php" method="post" enctype="mulipart/form-data">
<input type="file" name="file" />
<input type="submit" name="submit" class="button" />
</form>
PHP
<?php
if (move_uploaded_file($_FILES['file']['tmp_name'], "../avatar/")) {
print "Received {$_FILES['file']['name']} - its size is {$_FILES['userfile']['size']}";
} else {
print "Upload failed!";
}
?>
Here's the URL to my beta right now.
http://vago.x10.mx/chat3/index.php