here's the code for my insert page - thanks for the help!
<?php require_once('../Connections/pacific.php'); ?>
<?php
include_once("../fckeditor/fckeditor.php") ;
?>
<?php
if (!isset($_SESSION)) {
session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";
// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
// For security, start by assuming the visitor is NOT authorized.
$isValid = False;
// When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
// Therefore, we know that a user is NOT logged in if that Session variable is blank.
if (!empty($UserName)) {
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
// Parse the strings into arrays.
$arrUsers = Explode(",", $strUsers);
$arrGroups = Explode(",", $strGroups);
if (in_array($UserName, $arrUsers)) {
$isValid = true;
}
// Or, you may restrict access to only certain users based on their username.
if (in_array($UserGroup, $arrGroups)) {
$isValid = true;
}
if (($strUsers == "") && true) {
$isValid = true;
}
}
return $isValid;
}
$MM_restrictGoTo = "index.php";
if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {
$MM_qsChar = "?";
$MM_referrer = $_SERVER['PHP_SELF'];
if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)
$MM_referrer .= "?" . $QUERY_STRING;
$MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
header("Location: ". $MM_restrictGoTo);
exit;
}
?>
<?php
$thumbs_dir=$_GET['thumbs_dir'];
$thumbs_table=$_GET['thumbs_table'];
$typeid=$_GET['TypeID'];
// *** BEGIN Simply Upload ***
require_once("FXInc/uploadAction.inc");
$errMsg = "";
$action = true;
$noPath = true;
//$rename = false;
$delete = true;
$FX_successRedirect = "";
$FX_DirPath = "../images/ba/".$thumbs_dir."/thumbs/";
$FX_typearray = array("application","audio","image");
$FX_extarray = array();
$FX_size = "";
$FX_fields = array();
if ((isset($HTTP_POST_VARS["FX_upload"])) && ($HTTP_POST_VARS["FX_upload"] == "form1")) {
require_once("FXInc/upload.inc");
}
// *** END Simply Upload ***
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
//BEGIN RAY ITERATOR
foreach ($_POST as $key => $value)
{
if (substr($key,0,5) == 'thumb')
{
$value = eregi_replace("\.jpg$", '', $value);
$_POST[$key] = $value;
}
}
//END RAY ITERATOR
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO ".$thumbs_table." (thumb1, thumb2, thumb3, thumb4, DrID, TypeID, `description`, Patient_Name,Patient_Age, Patient_Height, Patient_Weight, Patient_Kids, Incision_Type, Placement_Type, Implant_Type, Size_ccs, Cup_Size_Before, Cup_Size_After) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['thumb1'], "text"),
GetSQLValueString($_POST['thumb2'], "text"),
GetSQLValueString($_POST['thumb3'], "text"),
GetSQLValueString($_POST['thumb4'], "text"),
GetSQLValueString($_POST['DrID'], "int"),
GetSQLValueString($_POST['TypeID'], "int"),
GetSQLValueString($_POST['description'], "text"),
GetSQLValueString($_POST['Patient_Name'], "text"),
GetSQLValueString($_POST['Patient_Age'], "text"),
GetSQLValueString($_POST['Patient_Height'], "text"),
GetSQLValueString($_POST['Patient_Weight'], "text"),
GetSQLValueString($_POST['Patient_Kids'], "text"),
GetSQLValueString($_POST['Incision_Type'], "text"),
GetSQLValueString($_POST['Placement_Type'], "text"),
GetSQLValueString($_POST['Implant_Type'], "text"),
GetSQLValueString($_POST['Size_ccs'], "text"),
GetSQLValueString($_POST['Cup_Size_Before'], "text"),
GetSQLValueString($_POST['Cup_Size_After'], "text"));
mysql_select_db($database_pacific, $pacific);
$Result1 = mysql_query($insertSQL, $pacific) or die(mysql_error());
$insertGoTo = "insert2.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_pacific, $pacific);
$query_rsDoctors = "SELECT Drs.DrID, Dr FROM Drs, TypesDrs WHERE TypesDrs.TypeID=".$typeid." AND Drs.DrID=TypesDrs.DrID ORDER BY Dr ASC";
$rsDoctors = mysql_query($query_rsDoctors, $pacific) or die(mysql_error());
$row_rsDoctors = mysql_fetch_assoc($rsDoctors);
$totalRows_rsDoctors = mysql_num_rows($rsDoctors);
$colname_rsTypeTitle = "-1";
if (isset($_GET['thumbs_dir'])) {
$colname_rsTypeTitle = (get_magic_quotes_gpc()) ? $_GET['thumbs_dir'] : addslashes($_GET['thumbs_dir']);
}
mysql_select_db($database_pacific, $pacific);
$query_rsTypeTitle = sprintf("SELECT Type FROM Types WHERE thumbs_dir = %s", GetSQLValueString($colname_rsTypeTitle, "text"));
$rsTypeTitle = mysql_query($query_rsTypeTitle, $pacific) or die(mysql_error());
$row_rsTypeTitle = mysql_fetch_assoc($rsTypeTitle);
$totalRows_rsTypeTitle = mysql_num_rows($rsTypeTitle);
//queries for breast fields
mysql_select_db($database_pacific, $pacific);
$query_rsAgeRange = "SELECT age_range_id, age_range FROM age_range ORDER BY age_range ASC";
$rsAgeRange = mysql_query($query_rsAgeRange, $pacific) or die(mysql_error());
$row_rsAgeRange = mysql_fetch_assoc($rsAgeRange);
$totalRows_rsAgeRange = mysql_num_rows($rsAgeRange);
mysql_select_db($database_pacific, $pacific);
$query_rsHeightRange = "SELECT height_range_id, height_range FROM height_range ORDER BY height_range ASC";
$rsHeightRange = mysql_query($query_rsHeightRange, $pacific) or die(mysql_error());
$row_rsHeightRange = mysql_fetch_assoc($rsHeightRange);
$totalRows_rsHeightRange = mysql_num_rows($rsHeightRange);
mysql_select_db($database_pacific, $pacific);
$query_rsWeightRange = "SELECT weight_range_id, weight_range FROM weight_range ORDER BY weight_range_id ASC";
$rsWeightRange = mysql_query($query_rsWeightRange, $pacific) or die(mysql_error());
$row_rsWeightRange = mysql_fetch_assoc($rsWeightRange);
$totalRows_rsWeightRange = mysql_num_rows($rsWeightRange);
mysql_select_db($database_pacific, $pacific);
$query_rsKids = "SELECT kids_id, kids FROM kids ORDER BY kids_id ASC";
$rsKids = mysql_query($query_rsKids, $pacific) or die(mysql_error());
$row_rsKids = mysql_fetch_assoc($rsKids);
$totalRows_rsKids = mysql_num_rows($rsKids);
mysql_select_db($database_pacific, $pacific);
$query_rsIncisionType = "SELECT incision_type_id, incision_type FROM incision_type ORDER BY incision_type ASC";
$rsIncisionType = mysql_query($query_rsIncisionType, $pacific) or die(mysql_error());
$row_rsIncisionType = mysql_fetch_assoc($rsIncisionType);
$totalRows_rsIncisionType = mysql_num_rows($rsIncisionType);
mysql_select_db($database_pacific, $pacific);
$query_rsPlacementType = "SELECT placement_type_id, placement_type FROM placement_type ORDER BY placement_type ASC";
$rsPlacementType = mysql_query($query_rsPlacementType, $pacific) or die(mysql_error());
$row_rsPlacementType = mysql_fetch_assoc($rsPlacementType);
$totalRows_rsPlacementType = mysql_num_rows($rsPlacementType);
mysql_select_db($database_pacific, $pacific);
$query_rsImplantType = "SELECT implant_type_id, implant_type FROM implant_type ORDER BY implant_type ASC";
$rsImplantType = mysql_query($query_rsImplantType, $pacific) or die(mysql_error());
$row_rsImplantType = mysql_fetch_assoc($rsImplantType);
$totalRows_rsImplantType = mysql_num_rows($rsImplantType);
mysql_select_db($database_pacific, $pacific);
$query_rsCupSizeBefore = "SELECT cup_size_before_id, cup_size_before FROM cup_size_before ORDER BY cup_size_before ASC";
$rsCupSizeBefore = mysql_query($query_rsCupSizeBefore, $pacific) or die(mysql_error());
$row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore);
$totalRows_rsCupSizeBefore = mysql_num_rows($rsCupSizeBefore);
mysql_select_db($database_pacific, $pacific);
$query_rsCupSizeAfter = "SELECT cup_size_after_id, cup_size_after FROM cup_size_after ORDER BY cup_size_after ASC";
$rsCupSizeAfter = mysql_query($query_rsCupSizeAfter, $pacific) or die(mysql_error());
$row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter);
$totalRows_rsCupSizeAfter = mysql_num_rows($rsCupSizeAfter);
$crumb="nav";
$crumb2="insert";
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php include('includes/browser_title.php');?></title>
<link href="css/admin.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include('includes/page_top.php');?>
<div id="contentWrap">
<div id="sidebar">
<?php include('includes/sidebar.php');?>
</div>
<div id="content">
<h1>New case for procedure type: <?php echo $row_rsTypeTitle['Type'];?></h1>
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>" enctype="multipart/form-data" onSubmit="FX_processPop();">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><td width="27%" valign="top">Patient Name</td>
<td valign="top">Patient Age</td>
</tr>
<tr>
<td valign="top"><input type="text" name="Patient_Name" id="Patient_Name" value="" /></td>
<td valign="top"><select name="Patient_Age" id="Patient_Age">
<option value="value">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsAgeRange['age_range_id']?>"><?php echo $row_rsAgeRange['age_range']?></option>
<?php
} while ($row_rsAgeRange = mysql_fetch_assoc($rsAgeRange));
$rows = mysql_num_rows($rsAgeRange);
if($rows > 0) {
mysql_data_seek($rsAgeRange, 0);
$row_rsAgeRange = mysql_fetch_assoc($rsAgeRange);
}
?>
</select></td>
</tr>
<tr>
<td valign="top">Patient Height</td>
<td valign="top">Patient Weight</td>
</tr>
<tr>
<td valign="top"><select name="Patient_Height" id="Patient_Height">
<option value="value">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsHeightRange['height_range_id']?>"><?php echo $row_rsHeightRange['height_range']?></option>
<?php
} while ($row_rsHeightRange = mysql_fetch_assoc($rsHeightRange));
$rows = mysql_num_rows($rsHeightRange);
if($rows > 0) {
mysql_data_seek($rsHeightRange, 0);
$row_rsHeightRange = mysql_fetch_assoc($rsHeightRange);
}
?>
</select></td>
<td valign="top"><select name="Patient_Weight" id="Patient_Weight">
<option value="">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsWeightRange['weight_range_id']?>"><?php echo $row_rsWeightRange['weight_range']?></option>
<?php
} while ($row_rsWeightRange = mysql_fetch_assoc($rsWeightRange));
$rows = mysql_num_rows($rsWeightRange);
if($rows > 0) {
mysql_data_seek($rsWeightRange, 0);
$row_rsWeightRange = mysql_fetch_assoc($rsWeightRange);
}
?>
</select></td>
</tr>
<tr>
<td valign="top">Patient Kids</td>
<td valign="top">Incision Type</td>
</tr>
<tr>
<td valign="top"><select name="Patient_Kids" id="Patient_Kids">
<option value="">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsKids['kids_id']?>"><?php echo $row_rsKids['kids']?></option>
<?php
} while ($row_rsKids = mysql_fetch_assoc($rsKids));
$rows = mysql_num_rows($rsKids);
if($rows > 0) {
mysql_data_seek($rsKids, 0);
$row_rsKids = mysql_fetch_assoc($rsKids);
}
?>
</select></td>
<td valign="top"><select name="Incision_Type" id="Incision_Type">
<option value="">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsIncisionType['incision_type_id']?>"><?php echo $row_rsIncisionType['incision_type']?></option>
<?php
} while ($row_rsIncisionType = mysql_fetch_assoc($rsIncisionType));
$rows = mysql_num_rows($rsIncisionType);
if($rows > 0) {
mysql_data_seek($rsIncisionType, 0);
$row_rsIncisionType = mysql_fetch_assoc($rsIncisionType);
}
?>
</select></td>
</tr>
<tr>
<td valign="top">Placement Type</td>
<td valign="top">Implant Type</td>
</tr>
<tr>
<td valign="top"><select name="Placement_Type" id="Placement_Type">
<option value="value">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsPlacementType['placement_type_id']?>"><?php echo $row_rsPlacementType['placement_type']?></option>
<?php
} while ($row_rsPlacementType = mysql_fetch_assoc($rsPlacementType));
$rows = mysql_num_rows($rsPlacementType);
if($rows > 0) {
mysql_data_seek($rsPlacementType, 0);
$row_rsPlacementType = mysql_fetch_assoc($rsPlacementType);
}
?>
</select></td>
<td valign="top"><select name="Implant_Type" id="Implant_Type">
<option value="" >-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsImplantType['implant_type_id']?>"><?php echo $row_rsImplantType['implant_type']?></option>
<?php
} while ($row_rsImplantType = mysql_fetch_assoc($rsImplantType));
$rows = mysql_num_rows($rsImplantType);
if($rows > 0) {
mysql_data_seek($rsImplantType, 0);
$row_rsImplantType = mysql_fetch_assoc($rsImplantType);
}
?>
</select></td>
</tr>
<tr>
<td valign="top">Cup Size Before</td>
<td valign="top">Cup_Size_After</td>
</tr>
<tr>
<td valign="top"><select name="Cup_Size_Before" id="Cup_Size_Before">
<option value="">-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsCupSizeBefore['cup_size_before_id']?>"><?php echo $row_rsCupSizeBefore['cup_size_before']?></option>
<?php
} while ($row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore));
$rows = mysql_num_rows($rsCupSizeBefore);
if($rows > 0) {
mysql_data_seek($rsCupSizeBefore, 0);
$row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore);
}
?>
</select></td>
<td valign="top"><select name="Cup_Size_After" id="Cup_Size_After">
<option value="" >-Not Sure-</option>
<?php
do {
?>
<option value="<?php echo $row_rsCupSizeAfter['cup_size_after_id']?>"><?php echo $row_rsCupSizeAfter['cup_size_after']?></option>
<?php
} while ($row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter));
$rows = mysql_num_rows($rsCupSizeAfter);
if($rows > 0) {
mysql_data_seek($rsCupSizeAfter, 0);
$row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter);
}
?>
</select></td>
</tr>
<tr>
<td valign="top">Size ccs</td>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"><input type="text" name="Size_ccs" id="Size_ccs" value="" /></td>
<td valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top"> </td></tr>
<tr>
<td colspan="2" valign="top">
Description<br />
<?php
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->BasePath = 'http://imagedr.com/fckeditor/' ;
$oFCKeditor->Value = '' ;
$oFCKeditor->Create() ;
?></td>
</tr>
<tr>
<td colspan="2" valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top"><label>Thumb 1
<input name="thumb1" type="file" id="thumb1" />
</label></td>
</tr>
<tr>
<td colspan="2" valign="top"><label>Thumb 2
<input name="thumb2" type="file" id="thumb2" />
</label></td>
</tr>
<tr>
<td colspan="2" valign="top"><label>Thumb 3
<input name="thumb3" type="file" id="thumb3" />
</label></td>
</tr>
<tr>
<td colspan="2" valign="top"><label>Thumb 4
<input name="thumb4" type="file" id="thumb4" />
</label></td>
</tr>
<tr>
<td colspan="2" valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top"><label>Doctor
<select name="DrID" id="DrID">
<?php
do {
?>
<option value="<?php echo $row_rsDoctors['DrID']?>"><?php echo $row_rsDoctors['Dr']?></option>
<?php
} while ($row_rsDoctors = mysql_fetch_assoc($rsDoctors));
$rows = mysql_num_rows($rsDoctors);
if($rows > 0) {
mysql_data_seek($rsDoctors, 0);
$row_rsDoctors = mysql_fetch_assoc($rsDoctors);
}
?>
</select>
</label></td>
</tr>
<tr>
<td colspan="2" valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top"> </td>
</tr>
<tr>
<td colspan="2" valign="top">
<input name="thumbs_table" type="hidden" id="thumbs_table" value="<?php echo $thumbs_table; ?>" />
<input name="thumbs_dir" type="hidden" id="thumbs_dir" value="<?php echo $thumbs_dir; ?>" />
<input name="TypeID" type="hidden" id="TypeID" value="<?php echo $_GET['TypeID']; ?>" />
<input type="submit" name="Submit" value="Continue >>">
<input type="reset" name="Submit2" value="Clear Form & Start Over"></td>
</tr>
</table>
<input type="hidden" name="FX_upload" value="form1">
<input type="hidden" name="MM_insert" value="form1">
</form>
</div>
</div>
<!--Raven Analytics Do Not Remove-->
<script type="text/javascript">
var ravenProt = (("https:" == document.location.protocol) ? "https://" : "http://");
document.write(unescape("%3Cscript src='" + ravenProt + "raven-seo-tracker.com/rt.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var ravenTracker = _raven._init("0BFADC00");
ravenTracker._track();
</script>
<!--End Raven-->
</body>
</html>
<?php
mysql_free_result($rsDoctors);
mysql_free_result($rsAgeRange);
mysql_free_result($rsKids);
mysql_free_result($rsIncisionType);
mysql_free_result($rsPlacementType);
mysql_free_result($rsImplantType);
mysql_free_result($rsCupSizeBefore);
mysql_free_result($rsCupSizeAfter);
mysql_free_result($rsWeightRange);
mysql_free_result($rsHeightRange);
?>
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532:





by: fiboPosted on 2009-10-07 at 13:04:15ID: 25519410
I would suspect the problem to lay somewhere else...
Changing from php4 to 5 might have changed what can be included.
Can you show the code where the file is included?