Avatar billede korfits Nybegynder
13. februar 2006 - 17:27 Der er 9 kommentarer og
1 løsning

Inkluder fil

Hej. Jeg har et spørgsmål.

Jeg har hentet et php community som åbner alle dens filer ved at sige www.adresse.dk/index.php?session=0&action=search

Her har den åbnet siden search og inkluderet php (så vidt jeg kan forstå)

Spørgsmålet går så på hvordan jeg laver nye sider og får dem til ligeledes at blive åbnet i index. Jeg har prøvet at kigge efter et stykke kode både i index filen og i de andre filer, men kan ikke rigtig finde noget, og jeg kan ikke bare skrive www.adresse.dk/index.php?session=0&action=den nye side

Er spørgsmålet til at forstå ? Det er lidt svært at forklare.
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:16 #1
<?php
if (isset($_GET['action'])) {
        switch ($_GET['action']) {
            case "1":
              include ("1.php");
              break;
            case "2":
              include ("2.php");
              break;
            case "3":
              include ("3.php");
              break;
            case "4":
              include ("4.php");
              break;
          }
      } else {include("startside.php");}
?>
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:17 #2
Ovenstående sættes ind i din index.php.
Ved action=1 inkluderer den altså 1.php.
Er det til at forstå?
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:18 #3
(hvis jeg da har forstået dit spg rigtigt. Du har ret - det er lidt svært at forstå)
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:20 #4
Hvis du intet forstår af det her - så post hele din index.php fil. Så skal jeg nok kigge på det
Avatar billede korfits Nybegynder
13. februar 2006 - 21:30 #5
<?
/* Script version 1.5, built: 24. June 2004
+------------------------------------------------------------------------------+
|                            DEV web management system                        |
+------------------------------------------------------------------------------+
| This file is component of the DEV :: web management system - licensed under  |
| the terms of the GPL License Agreement. Copyright (c) 2004 Ondrej Martinsky  |
|                                                                              |
|                    Please, send any comments, suggestions and bug reports to |
|                                                      martinsky@users.sf.net |
| Original Author: Ondrej Martinsky                                            |
| Author email  : martinsky@users.sf.net                                      |
| Project website: http://dev-wms.sourceforge.net/                            |
| Licence Type  : GPL                                                        |
+------------------------------------------------------------------------------+ */

$_path="./admin/";
include_once ("./register_globals.php");
include_once ("./conn_err.php");
include "./admin/_dbase.conf.php";
if (!$conf_mysql_server || !$conf_mysql_user_name || !$conf_mysql_database_name) {
$die_message =
"<table width=100% height=100%><tr><td style=\"font-family:tahoma; font-size:18px\">
<center>You have to install DEV web management system first.<br>
<a href=\"./install/index.php\">Click here to proceed</a></center>
</td></tr></table>";
die ($die_message);
}
include_once("./calc_filesize.inc.php");

if (!$spojenie=@mysql_pconnect ($conf_mysql_server,$conf_mysql_user_name,$conf_mysql_password)) die ($unable_to_connect);
mysql_select_DB ($conf_mysql_database_name);

include "class_configuration.php";
$configuration->ConfLoadDBtoPHP();
$currentunixtime=date(U);
class ccert {
var $id;
var $nick;
var $mail;
var $type;
var $permissions;
var $editing;
}
class cookie {
var $on;
}
class cokpass {
var $pass;
}
$okpass=new cokpass;
$certificate=new ccert;
$certificate->id=0;
$certificate->type="VISITOR";
$certificate->permissions="VISITOR";
$certificate->editing=false;

include "admin/_config.php";
include $configuration->language_file;

include "include.php";
include "cookie.php";
include "certificate.php";
include "zones.php";

if (($configuration->sessions_http_cache=="never") || ($certificate->type=="USER" && $configuration->sessions_http_cache=="not_logged")) {
Header("Pragma: no-cache");
Header("Cache-Control: no-cache");
Header("Expires: ".GMDate("D, d M Y H:i:s")." GMT");
}

if (mysql_fetch_row(mysql_query("SELECT id FROM bannedip1 WHERE '$REMOTE_ADDR' LIKE ip AND type LIKE 'access'",$spojenie))) die ("Access denied");

include "determ_title.php";

echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\">";
echo "\n<!-- $configuration->metainfo_copyright -->";
generate_notice();
echo "<html>";
generate_html_header();
echo "<body style=\"BACKGROUND-COLOR: $configuration->scheme_base_background_color\" background=\"$configuration->url_background_image\">";
$abs_width="100%";
echo "<div align=\"$configuration->page_alignment\">";
echo "<table width=\"$abs_width\" cellspacing=\"0\" cellpadding=\"0\" style=\"BACKGROUND-COLOR: $configuration->scheme_base_background_color\"><tr valign=\"top\"><td valign=\"top\">";
echo "<center>";
if ($configuration->advertisement_big_banner_enabled) banner_render("huge");
echo "</center></td></tr></table>";
echo "<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\"><tr><td>";
echo "<table class=\"topstr1\" height=\"".($configuration->title_bar_height+2*$configuration->link_bar_height)."\" width=\"$abs_width\" cellspacing=\"0\" cellpadding=\"0\">";
for ($indexpanel=0; $indexpanel<Count($configuration->bar_structure); $indexpanel++):
  include "bars_inc/".$configuration->bar_structure[$indexpanel].".php";
endfor;
echo "</table>";
echo "<table height=\"100%\" cellspacing=\"0\" cellpadding=\"0\" width=\"$abs_width\">";
echo "<tr valign=\"top\">";
if ($configuration->main_col_position=="left") include "center.php";
echo "<td width=\"$configuration->left_col_width\" style=\"BACKGROUND-IMAGE: url($configuration->left_col_background_url); BACKGROUND-COLOR: $configuration->scheme_left_col_background\">";
echo "<div align=\"left\">";
echo "<table width=\"100%\" cellspacing=\"0\" cellpadding=\"$configuration->left_right_col_margins\"><tr><td>";
$class1="ln";$class2="leftfont";$class3="leftfonts";
$input_style=$configuration->style_left_inputbox;
$urllabelbck=$configuration->left_panel_labels_url;
$hghlcolor=$configuration->left_col_font_highlight_color;
$shadow=$configuration->left_col_font_shadow_color;
$colwidth=$configuration->left_col_width;
$input_width=$colwidth-(2*$configuration->left_right_col_margins+5);
for ($indexpanel=0; $indexpanel<Count($configuration->left_col_structure); $indexpanel++):
include "panels_inc/".$configuration->left_col_structure[$indexpanel].".php";
echo "<p></p>";
endfor;
echo "</td></tr></table>";
echo "</td>";
if ($configuration->main_col_position!="left" && $configuration->main_col_position!="right") include "center.php";
echo "<td width=\"$configuration->right_col_width\" height=\"100%\" style=\"BACKGROUND-IMAGE: url($configuration->right_col_background_url); BACKGROUND-COLOR: $configuration->scheme_right_col_background\"><table  width=\"100%\" cellspacing=\"0\" cellpadding=\"$configuration->left_right_col_margins\"><tr><td>";
$class1="rn";$class2="rightfont";$class3="rightfonts";
$input_style=$configuration->style_right_inputbox;
$urllabelbck=$configuration->right_panel_labels_url;
$hghlcolor=$configuration->right_col_font_highlight_color;
$shadow=$configuration->right_col_font_shadow_color;
$colwidth=$configuration->right_col_width;
$input_width=$colwidth-(2*$configuration->left_right_col_margins+5);
for ($indexpanel=0; $indexpanel<Count($configuration->right_col_structure); $indexpanel++):
include "panels_inc/".$configuration->right_col_structure[$indexpanel].".php";
echo "<p></p>";
endfor;
include "counter.php";
echo "</td></tr></table></td>";
if ($configuration->main_col_position=="right") include "center.php";
echo "</tr></table>";
// IF YOU WANT TO LEGALLY USE DEV WEB MANAGEMENT SYSTEM, YOU MUST
// KEEP LABEL "Powered by DEV web management system" UNCHANGED ON
// ALL PAGES GENERATED USING THIS SYSTEM. THIS LABEL MUST BE A
// VALID LINK TO PRODUCT HOMEPAGE (http://dev-wms.sourceforge.net)
// ACCORDING TO PART 2C OF GNU LICENCE
footnote();
echo "</td><td valign=\"top\">";
if ($configuration->advertisement_vertical_enabled) {
echo ("<font ><br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font>");
banner_render("vertical");
}
echo "</td></tr></table>";
echo "</div>";
dt_close();
echo "</body>";
echo "</html>";
?>
Avatar billede korfits Nybegynder
13. februar 2006 - 21:30 #6
Jeg kan ikke finde nogen kode i filen som ligner din, og den virker allerede på nogle filer.
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:50 #7
Såvidt jeg lige hurtigt kan se, er det i center.php du skal kigge
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 21:50 #8
Hvis du heller ikke kan finde noget der ligner min kode der, så post den også
Avatar billede korfits Nybegynder
13. februar 2006 - 22:09 #9
Det lå i center.php

Tak for hjælpen.

Poster du et svar så du kan få point ?
Avatar billede cyberjelle Nybegynder
13. februar 2006 - 22:21 #10
Det var så lidt
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester