The Gamer Forum
Please log in or register to view and interact with this forum

we have our own Role playing browser game free of charge only available for members
The Gamer Forum
Please log in or register to view and interact with this forum

we have our own Role playing browser game free of charge only available for members
The Gamer Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.


where gamers across the globe come together at one place to make clans,discus strategies and give tips to fellow gamers,Role play Thread also available,also gaming reviews and previews- http://site-connect.net/zarule6 Free domain-http://www.freedomain.com
 
HomeLatest imagesSearchRegisterLog in
Greetings everyone,our forum is now open and in its beta stages please contact me at balder2011@ymail.co.za to discuss moderatorship or with any questions
This Site is still under construction so join up today and give us your opinions and shape the future of this website Smile
all quests please tell me your opinions on twitter or anywhere for the matter!!!
Forum Statistics
The Gamer World
The Gamer Life

Promote Your Page Too
Visitor Counter
Free Counter
Like/Tweet/+1
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
zarule6
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Orange Joker
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Lord Uther
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Gluttony
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Volknor
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
TGL BOT
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Leonard
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
John12
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Gornot
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
TROLLER
Got links  I_vote_lcapGot links  I_voting_barGot links  I_vote_rcap 
Latest topics
» Our first TOOLBAR
Got links  I_icon_minitimeSun Dec 11, 2011 4:25 pm by Orange Joker

» Return of GERALD
Got links  I_icon_minitimeFri Dec 09, 2011 4:03 pm by Volknor

» hello Im gona troll ya'll
Got links  I_icon_minitimeFri Dec 09, 2011 3:31 pm by Volknor

» What is your opinion
Got links  I_icon_minitimeFri Dec 09, 2011 3:15 pm by Volknor

» http://www.jacksonvillepublicadjusters.com/
Got links  I_icon_minitimeFri Dec 09, 2011 11:34 am by zarule6

» http://www.miamiclaimhelp.com/
Got links  I_icon_minitimeFri Dec 09, 2011 11:34 am by zarule6

» http://www.eastendersspoilers.co.uk
Got links  I_icon_minitimeFri Dec 09, 2011 11:31 am by zarule6

»  http://www.texaspublicadjuster.net/
Got links  I_icon_minitimeFri Dec 09, 2011 11:30 am by zarule6

» http://www.rentalpropertyinfrance.com/
Got links  I_icon_minitimeFri Dec 09, 2011 11:30 am by zarule6


 

 Got links

Go down 
AuthorMessage
zarule6
Admin
Admin
zarule6


Posts : 150
Honour : 3
Join date : 2011-11-27

Role Playing Character
Name: Overseer

Got links  Empty
PostSubject: Got links    Got links  I_icon_minitimeFri Dec 02, 2011 11:23 am

<%

' ****************do not modify the variables below******************
Dim GLKey
Dim GLPage
Dim GLCatCol
Dim GLLPP
Dim GLNW
Dim GLPS
Dim GLPQ
Dim GLAS
Dim Err
Dim GLResult
Dim GLCategory


' ********************************************************************
' You may change the variables below to customize the look and feel of
' your links page
' ********************************************************************

' This option defines the number of columns used to display categories
GLCatCol = 2
' This option defines the number of links displayed per page
GLLPP = 25
' This option defines whether links are opened in a new web browser window
' (1 = Yes, 0 = No)
GLNW = 1
' TThis option determines whether the search function is enabled
' for your links page (1 = Yes, 0 = No)
GLAS = 1

' ********************************************************************
' *****Please DO NOT make any edits or changes to the code below******
' ********************************************************************

GLKey = "Q4BR-XFY8-1A04"

GLPage = Request.ServerVariables("SCRIPT_NAME")

GLPS = "&UserKey=" & GLKey & "&ScriptName=" & GLPage & "&CatCols=" & GLCatCol & "&LinksPerPage=" & GLLPP & "&OpenInNewWindow=" & GLNW & "&AllowSearch=" & GLAS

GLPQ = Request.QueryString
GLCategory = Request.QueryString("cnm")

Function GetGotLinksData(HTTPQuery, PostStr, ByRef Resp, ByRef Er)
Dim HttpReqObj
Dim ComponentString

Set HttpReqObj = Nothing
On Error Resume Next
Set HttpReqObj = CreateObject("WinHttp.WinHttpRequest.5.1")
On Error Resume Next
If HttpReqObj Is Nothing Then Set HttpReqObj = CreateObject("WinHttp.WinHttpRequest.5") End If
On Error Resume Next

If HttpReqObj Is Nothing Then
On Error Resume Next
Set HttpReqObj = CreateObject("Msxml2.ServerXMLHTTP")
On Error Resume Next
If HttpReqObj Is Nothing Then
Set HttpReqObj = CreateObject("Msxml2.ServerXMLHTTP.4.0")
End If
On Error Resume Next
If HttpReqObj Is Nothing Then
Set HttpReqObj = CreateObject("Microsoft.XMLHTTP")
End If

On Error Resume Next
If HttpReqObj Is Nothing Then
Er = "HTTP requests not supported."
GetGotLinksData = False
Else
HttpReqObj.open "GET", "http://www.gotlinks.com/engine2.php?" & HTTPQuery & PostStr, false
HttpReqObj.Send

If HttpReqObj.status <> 200 Then
Er = "Error: Status=" & HttpReqObj.status & " Text='" & HttpReqObj.responseText & "'"
GetGotLinksData = False
Else
Resp = ComponentString & HttpReqObj.responseText
GetGotLinksData = True
End If
Set HttpReqObj = Nothing
End If
Else
HttpReqObj.Open "GET", "http://www.gotlinks.com/engine2.php?" & HTTPQuery & PostStr, False
HttpReqObj.Send

If HttpReqObj.Status <> 200 Then
Er = "Error: Status=" & HttpReqObj.Status & " Text=" & HttpReqObj.ResponseText
GetGotLinksData = False
Else
Resp = HttpReqObj.responseText
GetGotLinksData = True
End If
End If
End Function
%>


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>The Gamer <%=Category%> Partners</TITLE>
<META NAME="Author" CONTENT="GotLinks?com">
<META NAME="Description" CONTENT="a place where gamers across the world come together,where you can make new clans,discus strategies and give Tips also Role play and get the newest gaming reviews and previews.">

<STYLE type="text/css" media="screen">
.link { margin-bottom: 3px; margin-top: 3px;}
.cattable { width: 700px; border:1px solid black; }
.linktable { width: 700px; border:1px solid black; }
.catcell { border:1px solid black; text-align: center; }
.keywordsearch { font-size:9pt; font-family: arial, helvetica, sans-serif; }
.navlinks { color: blue; font-family: arial, helvetica, sans-serif;}
.topnavlinks { color: blue; font-family: arial, helvetica, sans-serif;}
.submitsearch { font-size:9pt; font-family:verdana, arial, helvetica, sans-serif; }
.url { font-weight: bold; font-family: arial, helvetica, sans-serif; font-size:10pt; color: blue;}
.catlink { font-weight: bold; color: blue; font-family:verdana, arial, helvetica, sans-serif; font-size:10pt; }
.description { font-size:10pt; color: black; margin-bottom: 5px; font-family: arial, helvetica, sans-serif; margin-top: 5px; }
.title { color: blue; margin-bottom: 5px; font-weight: bold; font-size:10pt; font-family:arial, helvetica, sans-serif; margin-top: 5px;}
.topnav { text-align: left; color: black; margin-top: 5px; font-family: arial, helvetica, sans-serif; margin-bottom: 5px; font-size:10pt;}
.navigationtext { font-size:10pt; margin-bottom: 5px; color: black; font-family: arial, helvetica, sans-serif; margin-top: 5px; text-align: center;}
</STYLE>

</HEAD>

<BODY>

<%
If GetGotLinksData(GLPQ, GLPS, GLResult, Err) Then
Response.Write GLResult
Else
' here we are just dumping error info to the page. You can clean this up to
' fit your site
Response.Write Err
End If

%>

</BODY>
</HTML>

Back to top Go down
http://gamerlifecom.blogspot.com
 
Got links
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
The Gamer Forum  :: Link exchanges-
Jump to: