-1

Well , i got a button on this form

echo " <td><form action='action.php' method='post'>
        <input type='hidden' id='itemid' name='itemid' value='". $row["name"] ."'/>
            <input type='hidden' id='seller' name='seller' value='". $row["player"] ."'/>
         <input  type='submit' value='Buy'/>
       </form></td>";

This is the button

             <input  type='submit' value='Buy'/>

Is it possible to make the button shows down in the buttom of the page the direct link ?

Just like this example

Dave
  • 5,108
  • 16
  • 30
  • 40
TimTomTin
  • 1
  • 1

1 Answers1

1

It is not possible. You will have to use the <a> tag, style it as a button and submit the form via Javascript.

icydemon
  • 78
  • 1
  • 9