İşte kod:
<form method="POST" action="<? echo $PHP_SELF; ?>" enctype="multipart/form-data">
It displays as HTML:<form method="POST" action="<? echo $PHP_SELF; ?>" enctype="multipart/form-data">
PHP benim kod kalanı çalışır ama bu benim kafa kaşıntı var
EDIT:
İşte bunu görüntülemek için kod:
<?
$AssignedTo = $_POST['id'];
if (isset ($_POST['submit'])) // if the form was submitted, display their name
{
// Action to be completed once the form is submitted
}
else // form hasn't been submitted, so display the form
{
echo '<form method="POST" action="<?php echo $PHP_SELF; ?>" enctype="multipart/form-data">
<h2>**** - Add </h2>
</form>';
}
?>