PDA

View Full Version : More Than 1 Homepage?



CoolMac
03-18-2004, 05:19 PM
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

vivitron 15
03-18-2004, 05:50 PM
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?

gungrave
03-18-2004, 07:55 PM
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
:huh: dont under stand u

NightStalker
03-18-2004, 08:00 PM
Maybe it was "The Favorite Start Page"?? :huh:

CoolMac
03-19-2004, 12:47 AM
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

h1
03-19-2004, 06:06 AM
You're not clear, please elaborate. :)

ck-uk
03-19-2004, 06:36 AM
:unsure: mate ,lamsey posted a homepage thingy mnths ago.I cant think of it atm.


when ,if, i do i'll let you know. :)

I.am
03-19-2004, 09:33 AM
:huh: :huh: :unsure: :unsure: :blink: :blink:

CoolMac
03-19-2004, 11:26 AM
:'( :frusty: :frusty: :frusty:

i just want to have 6 homepages

vivitron 15
03-19-2004, 11:51 AM
do you know how to make the pages seperately with html code?

Cl1mh4224rd
03-19-2004, 01:34 PM
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.

4th gen
03-19-2004, 01:42 PM
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:

4play
03-19-2004, 01:45 PM
you might be able to write yourself a homepage that automatically redirects you to a random page you choose.

CoolMac
03-19-2004, 11:59 PM
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

NightStalker
03-20-2004, 12:44 AM
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
Serve it yourself. Try installing Apache.

CoolMac
03-20-2004, 03:09 AM
i know,but i only run Apache on local just to test scripts

h1
03-20-2004, 06:29 AM
I have a slightly outdated, slightly crap list of free ad-free hosts hiding in Webdevelopment.

delphin460
03-20-2004, 12:42 PM
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

h1
03-20-2004, 09:29 PM
:rolleyes:
<?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);
?>