Spekkio Posted November 11, 2004 Posted November 11, 2004 I'm trying to include column_right.php to my site, but when I include it I get this. I've included header.php and column_left.php, and both those work fine (though the page looks funky), but for some reason it won't let me include column_right.php. All I'm doing is changing <link rel="stylesheet" href="../stylesheets/arrowlist.css" type="text/css"> <link rel="stylesheet" href="../stylesheets/indent.css" type="text/css"> <table width="510" border="0" cellspacing="0" cellpadding="0"> <?php //require('includes/column_right.php'); ?> <script language="JavaScript" type="text/javascript"> to <link rel="stylesheet" href="../stylesheets/arrowlist.css" type="text/css"> <link rel="stylesheet" href="../stylesheets/indent.css" type="text/css"> <table width="510" border="0" cellspacing="0" cellpadding="0"> <?php require('includes/column_right.php'); ?> <script language="JavaScript" type="text/javascript"> Any ideas? Thanks, ~Nate B.
Guest Posted November 12, 2004 Posted November 12, 2004 My guess is that column_right has been edited, and that the table code is off. I suggest reverting to a default column_right.php and seeing if the problem persists. I bet it won't. -jared
Spekkio Posted November 16, 2004 Author Posted November 16, 2004 Thanks for the help, but unfortunately, it still isn't working. All I really want is the shopping cart box on the right. Can I just add require(DIR_WS_BOXES . 'shopping_cart.php'); or something like it? Thanks, ~Nate B.
Spekkio Posted November 16, 2004 Author Posted November 16, 2004 Nevermind, I figured it out. I just forgot to include applications_top.php :blush:. Thanks anyways, ~Nate B.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.