Jump to content

[SOLVED] **SOLVED DON'T bother to read


scottybwoy

Recommended Posts

Hi All,

I have a template that has a form information on it with two Submit buttons, for two seperate functions.

However in my php script, it is not picking it up and proccessing what I want.

This is the script I'm using :
[code]
<?php
if (!empty($data_array))
  {
  if (isset($_GET['addclient']) && $_GET['addclient'] == "Add Client")
  {
  $this->addClient();
  } elseif (isset($_GET['commit']) && $_GET['commit'] == "Commit") {
  $this->insertCust($data_array);
  }

  $template = CUST_PAGE;
  } else {

  $custId = $this->makeCustId($company);
  $data_array = array("company" => $company, "custId" => $custId);

$template = CUST_PAGE;
  }
?>
[/code]

The URI displays the variable passed to the data_array, however is not picking up &addclient=Add+Client part asked for in the $_GET['addclient'] section that I want.  All it displays is the $template = CUST_PAGE; and not $template = CLIENT_PAGE; That I want, issued from my addClient() script.

Any ideas?  Thanks
Link to comment
https://forums.phpfreaks.com/topic/30741-solved-solved-dont-bother-to-read/
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.