Advertisement

11.30.2003 at 06:32AM PST, ID: 20811951
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

2nd header not directing to thank_you page

Asked by Senyonjo in PHP Scripting Language

Hi there, I am trying to re-direct users to a thank you page.  But I get a header error because the code thinks that I have already sent a header as part of session variables and as such, cannot create another.  Can someone help me with this problem?

----------------------------------------------------------------------------------------------
err
====
Warning: Cannot add header information - headers already sent by (output started at /home/4435/pebbles/www.sixoone.com/public_html/biz/dev/add_card2.php:22) in /home/4435/pebbles/www.sixoone.com/public_html/biz/dev/add_card2.php on line 109

code
===

<?php
session_name();
session_start("first_name");
session_start("last_name");
session_start("cust_num");
session_start("username");
session_start("email");
if ((!(session_is_registered("first_name")))||
    (!(session_is_registered("last_name")))||
     (!(session_is_registered("cust_num")))||
     (!(session_is_registered("username")))||
     (!(session_is_registered("email"))))
{
session_unset();
session_destroy();
$url = "Location: re_userlogin.php";
header($url);     -------- header 1
}
else
{
echo "<b>Hello $first_name $last_name, you are Customer No. $cust_num, you are logged
in.</b>";
}
?>
<?php
//brians code start here
include "functions.inc.php";
include "error_messages.inc.php";

//action=add means usr pressd the submit button
if ($action =="add")
{
 $error_found=false;
 $error="";
 //start validating the user input
 }
 if($co_name=="")
 {
  $error_found=true;
  $error.=ERR_CO_NAME_BLANK;
 }
 if($inda=="")
 {
  $error_found=true;
  $error.=ERR_INDUSTRY_BLANK;
 }
 if($position=="")
 {
  $error_found=true;
  $error.=ERR_POSITION_BLANK;
 }
  if($equip=="")
 {
  $error_found=true;
  $error.=ERR_EQUIP_BLANK;
 }
if(!$error_found)
{
 $db_name = "afa";
$table_name = "_089";
$connection = @mysql_connect("mysql", "ps", "nro") or die("Couldn't connect.");
$db = @mysql_select_db($db_name, $connection) or die("Couldn't select database.");
$sql = "insert into $table_name(
       email,
         co_name,
         inda,
         other,
         url,
         position,
         hours,
         cost,
         equip,
         web_source,
         username,
         cust_num,
         agent,
         status,
         date_reg,
         type)
         values(
             \"$email\",
             \"$co_name\",
             \"$inda\",
             \"$other\",
             \"$url\",
             \"$position\",
             \"Open all year Round\",
             \"Available on Request\",
             \"$equip\",
             \"bizafrican\",
             \"$username\",
             \"$cust_num\",
            129,
             \"active\",
             curdate(),
             \"client\")";
$result = mysql_query($sql,$connection);
$sql1 = "update _089 set inda = \"089\" where inda = \"_089\" ";
$result1 = mysql_query($sql1,$connection);

Header("Location: do_089xx.php");  -------- header 2  -- not working
exit;
}
else
{
 $error=ERR_HEADER.$error;
}
?>Start Free Trial
[+][-]11.30.2003 at 06:50AM PST, ID: 9845255

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: PHP Scripting Language
Sign Up Now!
Solution Provided By: arjanh
Participating Experts: 4
Solution Grade: A
 
 
[+][-]11.30.2003 at 07:24AM PST, ID: 9845314

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.14.2003 at 09:16AM PST, ID: 9937738

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 7-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]12.16.2003 at 03:49AM PST, ID: 9948438

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11.03.2004 at 12:21PM PST, ID: 12487025

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]11.07.2004 at 12:57AM PST, ID: 12516608

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32