i recently saw a wizard in which you type some pages and it generates the code so that your homepage is as much pages as you want,however it didn't work?
where can i find something like this that workd?
thx
Printable View
i recently saw a wizard in which you type some pages and it generates the code so that your homepage is as much pages as you want,however it didn't work?
where can i find something like this that workd?
thx
not sure what it is that you mean, do you have a link to the thing you were using? what does the help/info say?
:huh: dont under stand uQuote:
Originally posted by CoolMac@18 March 2004 - 17:19
i recently saw a wizard in which you type some pages and it generates the code so that your homepage is as much pages as you want,however it didn't work?
where can i find something like this that workd?
thx
Maybe it was "The Favorite Start Page"?? :huh:
no what i mean is this:
there was a wizard on a (spanish) site on which you could choose several pages.Once you finished the wizard,it asked you if you wanted to set your default page for a strange code.
the problem is that this program doesn't make that when you start Explorer or Firefox you get a random web site from a list,it just displayed pop-ups of those sites.
i hope i made myself clear,if not please tell me
thx
You're not clear, please elaborate. :)
:unsure: mate ,lamsey posted a homepage thingy mnths ago.I cant think of it atm.
when ,if, i do i'll let you know. :)
:huh: :huh: :unsure: :unsure: :blink: :blink:
:'( :frusty: :frusty: :frusty:
i just want to have 6 homepages
do you know how to make the pages seperately with html code?
Not sure about Firefox since I use Mozilla, but this should be close enough: Preferences -> Navigator. Under the "Home Page" section there's a button that says "Use Current Group". You'll want to open up the pages you want as your home page, then go and click that button.
You could create a page in HTML when, which opened, opens up the 6 pages you wish to keep. I think this was what vivitron 15 was talking about but wasn't sure... :unsure:
you might be able to write yourself a homepage that automatically redirects you to a random page you choose.
i could...but it would take time,especcially if the website is slow.And besides: i need a host that doesn't place any ads
Serve it yourself. Try installing Apache.Quote:
Originally posted by CoolMac@19 March 2004 - 18:59
i could...but it would take time,especcially if the website is slow.And besides: i need a host that doesn't place any ads
i know,but i only run Apache on local just to test scripts
I have a slightly outdated, slightly crap list of free ad-free hosts hiding in Webdevelopment.
ok, the fact is you can only have 1 real home page ( index.hmtl or default.html ) the rest is done with codes and redirects , and why would you want 6 home pages anyway
Just make the index page with hyperlinks for you visitors to choose what sub index they wish to go to
An important fact , the average visitor spends less than 10 seconds on a web page and if you make it confusing they will just close it and go somewhere else
:rolleyes:Code:<?php
$n=rand(1,6);
$r='';
switch($n)
{
case 1:
$r.='url to page 1';
break;
case 2:
$r.='url to page 2';
break;
case 3:
$r.='url to page 3';
break;
case 4:
$r.='url to page 4';
break;
case 5:
$r.='url to page 5';
break;
case 6:
$r.='url to page 6';
break;
}
header('Location: http://'.$r);
?>