Search found 155 matches

by mdgroot
Sun 2. Jul 2006, 20:35
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

That's a nice idea, but the basic problem right now is that I cannot get a variable into an external script..... :cry:
by mdgroot
Sat 1. Jul 2006, 22:27
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

does somebody knows how to do this ?
by mdgroot
Sat 1. Jul 2006, 12:18
Forum: sites you are proud of (made with phpwcms only)
Topic: www.beemsterweer.nl
Replies: 6
Views: 3817

Hi Klappstuhl28,

The layout is based on my other site; http://www.arcarion.eu :)

May well change the colors, but I'll see ...

Thank you for your comments..
by mdgroot
Fri 30. Jun 2006, 23:24
Forum: sites you are proud of (made with phpwcms only)
Topic: www.beemsterweer.nl
Replies: 6
Views: 3817

Thank you all for your kind comments .. :)

@Dexxus... yes, I know.... I'm a little bit trying something out there :wink:
by mdgroot
Fri 30. Jun 2006, 20:28
Forum: sites you are proud of (made with phpwcms only)
Topic: www.beemsterweer.nl
Replies: 6
Views: 3817

www.beemsterweer.nl

Hi all,

Have just 'finished' my new website.
It's a weatherstation website for the 'Beemster', a small town in the Northern part of The Netherlands.

http://www.beemsterweer.nl
by mdgroot
Fri 30. Jun 2006, 11:51
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

@rushclub For a temp solution this is what I use now; Have a external php file for every page in your phpwcms site which you want to have logged in the stats of bbclone: contents counter_mainpage.php: <? define("_BBC_PAGE_NAME", "Mainpage"); define("_BBCLONE_DIR", "...
by mdgroot
Fri 30. Jun 2006, 11:08
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

Hi Pico, I now have this in my html contentpart; [PHP] $GLOBALS[pageName] = 'Index page'; [/PHP] <iframe src="counter.php" height="1" width="1"></iframe> so, now I call counter.php and that script has to know the variable pageName so I can do a check on which page the v...
by mdgroot
Fri 30. Jun 2006, 10:51
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

Thanks, but I cannot get it to work.
I have URL rewriting on.

I have in every article (html content) :
[PHP]
$pageName = "index page";
[/PHP]

and then I call an external script which must now the variable $pageName.

But whatever I try, the var stays empty...
by mdgroot
Fri 30. Jun 2006, 02:35
Forum: phpwcms Support English
Topic: Parsing vars to an external php script
Replies: 11
Views: 5190

Parsing vars to an external php script

Is there a way to do this ?
I have an external script which needs a var from phpwcms.
I have e.g.:
$pageName = "Index";
in my article and I want to use that var in my external script.
by mdgroot
Thu 29. Jun 2006, 22:09
Forum: phpwcms Support English
Topic: Quick'n Dirty Fix for NAV_TABLE_COLUMN
Replies: 13
Views: 5518

Pico, I love you :D
by mdgroot
Tue 27. Jun 2006, 23:30
Forum: phpwcms Support English
Topic: {NAV_TABLE_COLUMN} acting very strange after upgrade 1.2.7
Replies: 9
Views: 3597

Hi Oliver,

I don't have any hidden catagories and still having this problem in IE.

Is there an easy way to fix this ?
by mdgroot
Tue 27. Jun 2006, 21:16
Forum: phpwcms Support English
Topic: {NAV_TABLE_COLUMN} acting very strange after upgrade 1.2.7
Replies: 9
Views: 3597

Yep, We all have the same problem. Is discussed already in other topics and I believe (hope) Oliver is working on it to fix this very soon. I'm still reworking the whole menu creation before release new version. The stupid tables and hidden/non hidden is a big problem. Oliver I find it a major issue...
by mdgroot
Mon 26. Jun 2006, 23:04
Forum: phpwcms Support English
Topic: Pre 1.2.7 release!
Replies: 157
Views: 54020

Isn't there a simple fix for these 'right aligned' menu-items ?
My whole site is a mess now ... :cry:
by mdgroot
Mon 26. Jun 2006, 18:23
Forum: phpwcms Support English
Topic: [PHP] and return
Replies: 3
Views: 2100

thanks. That did the trick...
why is that ?
by mdgroot
Mon 26. Jun 2006, 16:36
Forum: phpwcms Support English
Topic: [PHP] and return
Replies: 3
Views: 2100

[PHP] and return

Does someone know how to include a return <br> between the [PHP] tags ? If I use [PHP] echo "test"; echo "<br><br>"; echo "test2"; [/PHP] it's not going to work. All other tags, like <hr> e.g. are working, but not the <br>. It's printing it all on 1 line.