How to create a button in PHP

adnanforum Posted messages 204 Registration date   Status Member Last intervention   -  
arthezius Posted messages 3756 Status Member -
Hello,
how to create a button that gives access to another PHP file?
Configuration: Windows Vista Firefox 1.5.0.7

3 answers

  1. jojodivx Posted messages 202 Status Member 16
     
    <a href="page.php">page</a>

    Is that what you wanted to know?
    0
    1. adnanforum Posted messages 204 Registration date   Status Member Last intervention   38
       
      no, I want a button, not a link
      0
  2. Dackxes Posted messages 275 Registration date   Status Member Last intervention   35
     
    Well, you create your image and you do:

    <a href="YourFile.php"><img src="YourImage"></a>

    Have a nice end of the afternoon
    0
  3. arthezius Posted messages 3756 Status Member 475
     
    If you really want a button, it's not hard.
    <form method="post" action="your link"> <input type="submit" value="Link" /> </form>

    Generally, it's mostly used for a form.
    By modifying the value="", you can change the text of the button.
    --
    Independent webmaster.
    0