Results 1 to 9 of 9
Thread: What did i miss?
-
October 6th, 2004, 03:29 AM #126Registered User
posts
What did i miss?
I don't know if this thread is in the right folder but anyway,
I have made a site whit php and at the bottom it displays a "1" that is not in the script but somehow it genarates it?
Does anyone know where the problem is?
Here is the site: http://www.intermediamakers.nl/fakkert/
thanks Patrick
-
October 6th, 2004, 03:50 AM #2
youve got a "1" between youre tables at the bottom of the page, cant tell if its coming from your php though
timeline? what's that for?
-
October 6th, 2004, 04:01 AM #326Registered User
postsYes its from the php not in the tables. I looked in the loaded pages that the php file calls, and there is no "1" in there :S but thanks anyway
-
October 6th, 2004, 07:41 AM #4
I'm fairly sure this is the wrong forum, u might want one like server side scripting (if kirupa has it, i only use this forum) but i don't think anyone will be able to help u if u don't post any code (unless this is a regular phenomen with php)
-
October 6th, 2004, 09:31 AM #526Registered User
postsYour right, but how do i get my script in a form, he reads it as a scipt and half is not shown then
Last edited by p_stevens; October 6th, 2004 at 09:35 AM.
-
October 6th, 2004, 09:36 AM #6
is that all of it??
BTW 100th post yay!!
-
October 6th, 2004, 09:39 AM #7
put tags around it "["PHP"]" put stuff in here!"["/PHP"]" (no quotes just trying to block it!)
-
October 6th, 2004, 10:05 AM #826Registered User
postsPHP Code:
<html>
<head>
<title>Mazda | Seat | Hyundai...... Fakkert Groep</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css/stylehome.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php include('header.php'); ?>
<?php
$pagina = "" .strtolower($_GET['page']).".php";
if (file_exists($pagina))
{
echo include($pagina);
}
else
{
echo include('home.php');
}
?>
<?php include('footer.php'); ?>
</body>
</html>
-
October 6th, 2004, 11:07 AM #9
my guess is that the 1 comes from "footer.php".. in the code you posted I don't see any ones
Last edited by virusescu; October 6th, 2004 at 11:12 AM.
...lurking around

Reply With Quote

Bookmarks