Jump to content

[SOLVED] Button


westminster86

Recommended Posts

Im using the isset function as follows.

 

if (isset($_POST['submit'])) {

  // check form fields

}

 

The problem im having is the call to the display_form_button() function doesnt have a input type, therefore the $_POST['submit'] is not set. If I were to add submit to the input type, the isset function works, but then it doesnt display the button ive created, it displays the html button.

 

function display_form_button($image, $alt)

{

  echo "<center><input type =  image src=\"$image".".gif\"

          alt=\"$alt\" border=0 height=32 width=100 name=\"submit\" ></center>";

}

 

 

Link to comment
https://forums.phpfreaks.com/topic/99987-solved-button/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.