 |
Results from the most recent live auction are here.
20 members in the live chat room. Join Chat!
| |
04-03-2008, 12:40 AM
|
· #1 | | DNOA Member Name: Stu Join Date: Jan 2006
Posts: 2,926
NP$: 12477.00 ( Donate)
| Capturing domain name I would like to have a For Sale page with many domains being redirected to that page. Is there any way to capture the domain name in a variable so I can display it on the served page. |
| |
04-03-2008, 12:57 AM
|
· #2 | | Traveller Location: In an airport, probably Join Date: Mar 2007
Posts: 1,347
NP$: 573.28 ( Donate)
| <?php echo $_SERVER['SERVER_NAME'] ?>
edit: wait, sorry, you want to redirect them all to the same url, using forwarding?
e.g.
domain1.com -> domainforsale.com
domain2.com -> domainforsale.com
probably the most reliable way would be to include the domain in the url, e.g.
domain1.com -> domainforsale.com?domain=domain1.com
domain2.com -> domainforsale.com?domain=domain2.com
then you have $_GET['domain']
if you dont want to do that, you might be able to use the referrer property, however there is no guarantee it will always exist.
$_SERVER['HTTP_REFERER']
Last edited by -NC- : 04-03-2008 at 01:02 AM.
|
| |
04-03-2008, 02:09 AM
|
· #3 | | DNOA Member Name: Stu Join Date: Jan 2006
Posts: 2,926
NP$: 12477.00 ( Donate)
|
Last edited by stub : 04-03-2008 at 02:58 AM.
|
| |
04-03-2008, 03:05 AM
|
· #4 | | Traveller Location: In an airport, probably Join Date: Mar 2007
Posts: 1,347
NP$: 573.28 ( Donate)
| <?php echo $_GET['domain']; ?> |
| |
04-03-2008, 07:42 AM
|
· #5 | | DNOA Member Name: Stu Join Date: Jan 2006
Posts: 2,926
NP$: 12477.00 ( Donate)
| Fabulous! I've been working on this on-and-off for about six months! Thank you very much indeed. If I could find out how to add rep, I would. |
| |
04-03-2008, 08:04 AM
|
· #6 | | Traveller Location: In an airport, probably Join Date: Mar 2007
Posts: 1,347
NP$: 573.28 ( Donate)
| lol! no problem. to add rep, you click the blue scales* icon on the left of a post, right next to the warning sign icon for reporting posts.
*i don't think it looks like scales at all
p.s. the code i gave you is really just an example, is insecure, allows anyone to put whatever they want into the address bar of their browser and have your site render it, this means they could put some nasty javascript or frame code in some links to your site.
this is much more secure:
<?php
echo preg_replace('/[^a-zA-Z0-9.-]/', '', $_GET['domain']);
?>
( only allows numbers, letters, dots and hyphens )
Last edited by -NC- : 04-03-2008 at 08:23 AM.
|
| |
04-03-2008, 01:37 PM
|
· #7 | | DNOA Member Name: Stu Join Date: Jan 2006
Posts: 2,926
NP$: 12477.00 ( Donate)
| Funny. I knew it was somewhere down there, and I tried clicking on a few things (but I think I might have been right-clicking). Rep added. I think it looks like gray scales
Thank you for the revised code. |
| |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |