How to create a button in PHP

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

3 réponses

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

Is that what you wanted to know?
0
adnanforum Posted messages 204 Registration date   Status Membre Last intervention   38
 
no, I want a button, not a link
0
Dackxes Posted messages 275 Registration date   Status Membre 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
arthezius Posted messages 3756 Status Membre 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