[PHP] Re: build button with php

2001-08-15 Thread Hugh Bothwell
"Hugh Bothwell" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > if (isset($action) and isset($action_list[$action])) { > $t = $actions[$action](); Typo alert!! This line should be '$t = $action_list[$action];' -- PHP General Mailing List (http

[PHP] Re: build button with php

2001-08-15 Thread Hugh Bothwell
"Nafiseh Saberi" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I want to build buttons with php > and when click eavh of them , > one special work ,do for me. Do action 1"; } function action2() { echo "Do action 2"; } function acti