|
its not working about u r saying i did like this but its not working
is this rite way how should i do
<?php
if($_POST ['edit'])
{
?>
<form name="form1" method="post" action="editfile.php">
<?
}
if($_POST['upload'])
{
?>
<form name="form1" method="post" action="upload.php">
<?php
}
?>
<input type="text" name="textfield">
<input name="edit" type="submit" id="edit" value="EDIT">
<input name="upload" type="submit" id="upload" value="UPLOAD FILES">
</form>
|