[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/includes/bbcode.php on line 483: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
Webmasterplein.net 2005-04-14T20:07:52+01:00 http://webmasterplein.net/feed.php?f=13&t=1800 1970-01-01T01:00:01+01:00 2005-04-14T20:07:52+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=31433#p31433 <![CDATA[inhoud veranderen zonder iframe]]> ik snap de bedoeling er niet van....

Statistieken: Geplaatst door Derk — 14 apr 2005 20:07


]]>
1970-01-01T01:00:01+01:00 2005-04-14T19:55:15+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=31427#p31427 <![CDATA[inhoud veranderen zonder iframe]]> global.php
[syntax="php"]
<?PHP

// *** database *** //
$database_url = "localhost"; // de locatie van de database
$gebruiker = "root"; // de username van de database
$wachtwoord = "root"; // het wachtwoord om toegang te krijgen tot de database
$database = "root"; // de naam van de database

// *** einde database *** //

// *** instellingen *** //
$full_url = "http://www.site.nl"; // je voledige url zonder / aan het einde.
$email = "info@site.nl"; // je email.. is meestal wel handig.. voor links..
$titel = "Welkom op mijn homepage"; // de site titel

// kijk naar de vars.. zo kun je zelf meer aan maken

// *** einde instellingen *** //


// *** header van de site *** //

// waar mijn html staat kun je dus vervangen door je eigen html
$header = "
<html>
<head>
<title>".$titel."</title>
</head>

<body>";

// *** einde header van de site *** //


// *** footer van de site *** //

// waar mijn html staat kun je dus vervangen door je eigen html
$footer = "
</body>
</html>";

?>
[/syntax]
index.php
[syntax="php"]
<?

// *** include de global.. anders zal niks werken *** //
include("./global.php");

// nu plaatsen we de header aan de bovenkant
echo $header;

//Hier komt je text
echo "welkom op mijn site.";

// en hier de afsluiting.. de footer
echo $footer;

?>
[/syntax]

Statistieken: Geplaatst door mats — 14 apr 2005 19:55


]]>
1970-01-01T01:00:01+01:00 2005-04-13T15:32:45+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=31102#p31102 <![CDATA[inhoud veranderen zonder iframe]]> Statistieken: Geplaatst door Derk — 13 apr 2005 15:32


]]>
1970-01-01T01:00:01+01:00 2005-04-13T10:55:59+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=31047#p31047 <![CDATA[inhoud veranderen zonder iframe]]> Ik ga eerst trachten alles werkende te krijgen en dan ga ik eens goed nadenken over het uiterlijk.

Dankzij dit systeem zal het uiterlijk toch zeer eenvoudig aan te passen zijn.

Statistieken: Geplaatst door julien — 13 apr 2005 10:55


]]>
1970-01-01T01:00:01+01:00 2005-04-12T17:00:26+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30927#p30927 <![CDATA[inhoud veranderen zonder iframe]]> Statistieken: Geplaatst door Derk — 12 apr 2005 17:00


]]>
1970-01-01T01:00:01+01:00 2005-04-12T16:07:50+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30923#p30923 <![CDATA[inhoud veranderen zonder iframe]]> http://www.cadsite.be/test/index2.php
Het zal deze worden. Hierbij flitst het menu niet even weg, nog veel knapper dus!
BTW, in de nieuwe versie komt zeker een link naar dit forum!
Nu begint het moeilijkste voor mij... design. Rolling Eyes

Statistieken: Geplaatst door julien — 12 apr 2005 16:07


]]>
1970-01-01T01:00:01+01:00 2005-04-12T16:04:48+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30922#p30922 <![CDATA[inhoud veranderen zonder iframe]]> dat niuwe had ook gewerkt denk ik alleen zat de kans erin dat hij 'mischien' niet zou werken....

Statistieken: Geplaatst door Derk — 12 apr 2005 16:04


]]>
1970-01-01T01:00:01+01:00 2005-04-12T16:03:45+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30920#p30920 <![CDATA[inhoud veranderen zonder iframe]]> blijkt dat het opeens wel werkte...
Blijkbaar geen goede copy paste gedaan. :fool:

Statistieken: Geplaatst door julien — 12 apr 2005 16:03


]]>
1970-01-01T01:00:01+01:00 2005-04-12T16:01:34+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30918#p30918 <![CDATA[inhoud veranderen zonder iframe]]> hmmm ik d8 dat het daarstraks toen ik het javascript testte wel werkte....

*gaat wat anders verzinnen

<hr />andere oplossing:



[syntax="php"]<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>Test index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="description" content="">
<meta http-equiv="keywords" content="Autocad">
<meta http-equiv="generator" content="mps htmlgate free">
<meta http-equiv="author" content="julien">
<?
if ($_GET["p"]=="mezelf")
{
$page="mezelf.html";
$menu="Diverse";
}
else if ($_GET["p"]=="test")
{
$page="test.html";
$menu="Diverse";
}
else if ($_GET["p"]=="pagina_2")
{
$page="pagina_2.htm";
$menu="Diverse";
}
else
{
$page="test.html";
$menu="geen";
}
?>

<script type="text/javascript">
<!--
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_showHideLayers() { //v3.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">

<div id="Layer1" style="position:absolute; left:91px; top:8px; width:563px; height:26px; z-index:1; visibility: visible"><a href="../index.html">startpagina</a>
| <a href="#" >Cursus</a>
| <a href="#" >blocks</a>
| <a href="#" >lisp</a>
| <a href="#" >Applicaties</a>
| <a href="#" >Contact</a>
| <a href="#" >Diverse</a></div>
<div id="Cursus" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="Cursus") { echo"visible"; } else { echo"hidden"; } ?>">
<p>CURSUS<br>
Tips en trucks<br>
lessen<br>
links</p>
</div>
<div id="block" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="Blocks") { echo"visible"; } else { echo"hidden"; } ?>">
<p>BLOCKS<br>
Wat zijn blocks?<br>
download<br>
links</p>
</div>
<div id="Lisp" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="lisp") { echo"visible"; } else { echo"hidden"; } ?>">
<p>LISP<br>
Wat is lisp<br>
download<br>
links</p>
</div>
<div id="Applicaties" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="Applicatieslisp") { echo"visible"; } else { echo"hidden"; } ?>">
<p>APPLICATIES<br>
Wat zijn dat?<br>
download<br>
links</p>
</div>
<div id="contact" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="Contact") { echo"visible"; } else { echo"hidden"; } ?>">
<p>CONTACT<br>
Hoe contacteren?<br>
Formulier<br>
Adverteer<br>
Breng een tip aan<br>
Gastenboek<br>
<a href="http://forum.cadsite.be">Forum</a><br>
</p>
</div>
<div id="Diverse" style="position:absolute; left:5px; top:50px; width:100px; height:150px; z-index:2; visibility: <? if ($menu=="Diverse") { echo"visible"; } else { echo"hidden"; } ?>">
<p>DIVERSE<br>
<a href="index.php?p=mezelf">linkje 2</a><br>
<a href="index.php?p=test">test</a><br>
Uw link suggestie<br>
Lengte omzetten<br>
Oppervlakte omzetten<br>
Hoe helpen<br>
<a href="index.php?p=biertje">Biertje?</a><br>
<a href="index.php?p=pagina_2">linkje 2</a><br>
</p>
</div>
<div id="Inhoud" style="position:absolute; left:110px; top:50px; width:600px; height:500px; z-index:2; visibility: visible">
<?
include('inhoud/'.$page);
?>

</div>
</body>
</html>[/syntax]

Statistieken: Geplaatst door Derk — 12 apr 2005 16:01


]]>
1970-01-01T01:00:01+01:00 2005-04-12T15:54:45+01:00 http://webmasterplein.net/viewtopic.php?t=1800&p=30914#p30914 <![CDATA[inhoud veranderen zonder iframe]]> http://www.cadsite.be/test/
Ik zoek natuurlijk even mee.

Statistieken: Geplaatst door julien — 12 apr 2005 15:54


]]>