y0 c0derz!
My formula looks like this:
<form method="post" action="index.php?sida=upl" enctype="multipart/form-data" name="myform">
<input type="file" name="picture" id="picture" class="file_1" />
<input type="image" name="submit" style="margin-left: 120px;" src="uplbutt.png" />
</form>
And the PHP code for the formula looks like this:
if (array_key_exists('image', $_POST))
{
// do something here bla bla
}
But when i click on the image-submit button nothing happens as it is suppose to happen? What could be wrong?