Be a Supporter!

Sorry another problem...

  • 511 Views
  • 8 Replies
New Topic Respond to this Topic
Holylemonjuice
Holylemonjuice
  • Member since: Jan. 24, 2006
  • Offline.
Forum Stats
Member
Level 13
Blank Slate
Sorry another problem... 2006-08-14 17:16:35 Reply

hey guys, just wandering how is it I make a page divert to another?

DFox
DFox
  • Member since: Aug. 9, 2003
  • Offline.
Forum Stats
Member
Level 30
Blank Slate
Response to Sorry another problem... 2006-08-14 17:17:27 Reply

Using what?

PHP, JavaScript, ASP?


BBS Signature
Loccie
Loccie
  • Member since: Feb. 27, 2004
  • Offline.
Forum Stats
Member
Level 16
Blank Slate
Response to Sorry another problem... 2006-08-14 17:18:13 Reply

At 8/14/06 05:16 PM, Holylemonjuice wrote: hey guys, just wandering how is it I make a page divert to another?

you mean linking?

The Text

change _self to _blank for a new window.

DannyIsOnFire
DannyIsOnFire
  • Member since: Apr. 14, 2005
  • Offline.
Forum Stats
Member
Level 21
Movie Buff
Response to Sorry another problem... 2006-08-14 17:19:50 Reply

If you mean redirecting, check out this.


|| Portfolio || Facebook || Twitter ||

BBS Signature
Loccie
Loccie
  • Member since: Feb. 27, 2004
  • Offline.
Forum Stats
Member
Level 16
Blank Slate
Response to Sorry another problem... 2006-08-14 17:20:04 Reply

At 8/14/06 05:18 PM, Loccie wrote:
At 8/14/06 05:16 PM, Holylemonjuice wrote: hey guys, just wandering how is it I make a page divert to another?
you mean linking?

The Text

change _self to _blank for a new window.

[a href="page.com" target="_blank"]text[/a]

change [&] with <&> always forget this on ng bbs.

JeremysFilms
JeremysFilms
  • Member since: Feb. 18, 2005
  • Offline.
Forum Stats
Member
Level 18
Blank Slate
Response to Sorry another problem... 2006-08-14 18:33:08 Reply

PHP:
<? header('Location: http://www.site.com'); ?>

HTML:
<meta http-equiv="refresh" content="0; url=http://www.site.com" />

HTML HyperLink:
<a href="http://www.site.com">Text to Click</a>

DFox
DFox
  • Member since: Aug. 9, 2003
  • Offline.
Forum Stats
Member
Level 30
Blank Slate
Response to Sorry another problem... 2006-08-14 18:34:53 Reply

At 8/14/06 06:33 PM, JeremysFilms wrote:

:Scripts

LOL JAVASCRIPT
<SCRIPT LANGUAGE="JavaScript">
window.location="http://www.yourdomain.com
/";
</script>


BBS Signature
Mister-Mind
Mister-Mind
  • Member since: Jul. 1, 2006
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Response to Sorry another problem... 2006-08-14 18:35:02 Reply

You mean as like in php re direction?

JeremysFilms
JeremysFilms
  • Member since: Feb. 18, 2005
  • Offline.
Forum Stats
Member
Level 18
Blank Slate
Response to Sorry another problem... 2006-08-14 18:45:30 Reply

At 8/14/06 06:34 PM, DFox2 wrote:
At 8/14/06 06:33 PM, JeremysFilms wrote: Scripts
LOL JAVASCRIPT
<SCRIPT LANGUAGE="JavaScript">
window.location="http://www.yourdomain.com
/";
</script>

Heh, I was gonna put that but I suck at JS and literally every time I've ever used it, I've screwed something up so I was scared I'd write the wrong thing :P