HI Terion,
Please put the error reporting on top of the page and try. If you have any
errors in the include file, it won't execute the rest of commands. Make the
changes to code as follows.

<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
include("inc/dbconn_open.php");

?>

Regards,

Johny John

www.phpshore.com

On Fri, Dec 5, 2008 at 3:50 AM, Terion Miller <[EMAIL PROTECTED]>wrote:

> Hey everyone I am still fighting the same problem that my script isn't
> working and its not reporting errors, when you click to "view" the work
> order it doesn't do anything, I have all kinds of error reporting turned on
> but nothing, do I have them syntax wrong?
>
> <?php
> include("inc/dbconn_open.php");
> error_reporting(E_ALL);
>  ini_set('display_errors', '1');
>  error_log("errors.txt");
>
>
> if (empty($_SESSION['AdminLogin']) OR $_SESSION['AdminLogin'] <> 'OK' ){
>    header ("Location: LogOut.php");
> }
>
> if (isset($_GET['AdminID']) && !empty($_GET['AdminID'])){
>    $AdminID = $_GET['AdminID'];
> } else {
>    header ("Location: LogOut.php");
> }
>
>    $query = "SELECT ViewAllWorkOrders FROM admin WHERE AdminID='$AdminID'";
>    $result = mysql_query ($query);
>    $row = mysql_fetch_object ($result);
>    if ($row->ViewProjects == "NO") {
>        header ("Location: Welcome.php?AdminID=$AdminID&msg=Sorry, you do
> not have access to that page.");
>    }
>
> if (isset($_GET['WorkOrderID'])) {$WorkOrderID = $_GET['WorkOrderID'];}
> else
> {$WorkOrderID = '';}
> if (isset($_GET['ReturnPage'])) {$ReturnPage = $_GET['ReturnPage'];} else
> {$ReturnPage = 'Welcome.php';}
>
>
>    $sql = "SELECT FormName FROM workorders WHERE
> WorkOrderID='$WorkOrderID'";
>    $result = mysql_query ($sql);
>    $row = mysql_fetch_object ($result);
>
>
>    if (mysql_num_rows($result) > 0) {
>
>        if ($row->FormName == "WorkOrder") {
>            header ("Location:
>
> ViewWorkOrder.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        }elseif ($row->FormName == "PD_Coupon") {
>            header ("Location:
>
> ViewPD_Coupon.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        }elseif ($row->FormName == "PD_TextAd") {
>            header ("Location:
>
> ViewPD_TextAd.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        }elseif ($row->FormName == "PD_Enhanced") {
>            header ("Location:
>
> ViewPD_Enhanced.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        }elseif ($row->FormName == "HS_Builder") {
>            header ("Location:
>
> ViewHomescape_Builder.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        }elseif ($row->FormName == "HS_SpecHome") {
>            header ("Location:
>
> ViewHomescape_SpecHome.php?AdminID=$AdminID&WorkOrderID=$WorkOrderID&ReturnPage=$ReturnPage");
>        } else {
>            header ("Location: Welcome.php?AdminID=$AdminID&msg=Nothing
> works Does it....");
>        }
>    } else {
>        header ("Location: Welcome.php?AdminID=$AdminID&msg=Nothing
> Works..grrrr");
>    }
>    ?>
>



-- 
Regards,
Johny
www.phpshore.com

Reply via email to