Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Private Server
You last visited: Today at 23:55

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Coding]New type website system

Discussion on [Coding]New type website system within the SRO Private Server forum part of the Silkroad Online category.

Closed Thread
 
Old 05/19/2012, 18:54   #46
 
elite*gold: 0
Join Date: Mar 2012
Posts: 492
Received Thanks: 125
Guys,
I mean something like
Code:
<?
echo 'div class="content">';
echo 'div class="etc">';
?>
What i mean is :
That we can use PHP With HTML.
infact its always PHP with HTML.
Html shows you how the site is pretty.
PHP shows you the scripts you did.(Register,Log-in,Log-Out);

That's what i meant!

and your site,. can be done by noob editor of sites.
well. i did it in 10 minutes
Here's the code.
Index.php
Code:
<html>
<head>
<meta charset="utf-8" />
<title>
Legendary-Online | Home Page
</title>
<link rel="stylesheet" href="styles.css" type="text/css" />
</head>

<body>
<?php include("./inc/header.php")?>

<div id="wrapper">
<div id="spacer">
<div id="content">
<?php include("./inc/statsbar.php")?>
<?php include("./inc/miscbar.php")?>

<div class="news-title">
Welcome to Legendary - Test.
</div>
TeST</div>

</div>
</body>
</html>
CSS(Styles.css)
Code:
/*******Header**********/

div#header{
	position: relative;
	margin: 0px;
	padding: 0px;
	background-color: #000;
	width: 100%;
	background-size: 100% 100%;
	color:#000;
	border-radius: 8px 8px;
	border: 3px double #000;	
}
/****Wrappers******/
div#wrapper{
	width: 960px;
	background-color: #000;
	margin: 20px auto 0px auto;
	border-radius: 8px 8px;
	border: 3px double #FFF;

}
div#hewrapper{
	width: 960px;
	margin: 0px auto 0px auto;
}
/****Content******/
div#content{
	background-color: #FFF;
	padding: 0px 12px;
	margin: 12px 8px 8px 8px;
	min-height: 520px;
	color: #FFF;
	border-radius: 8px 8px;
	border: 3px double #FFF;

}
/***Notice+Things*****/
.news-title{
	background-color: #000;
	padding: 0px 12px;
	margin: auto;
	min height: 100px;
	color: #FFF;
	color: #FFF;
	font-size: 2em;
	font-weight: 500;
	min-width: 190px;
	border-radius: 8px 8px;
	border: 3px double #FFF;
}
/*******Right Bars********/
div#statsbar{
	color: red;
	float:right;
	padding: 0px 12px;
	margin: 15px 8px 8px 8px;
	min-height: 220px;
	background-color:#000;
	border-radius: 8px 8px;
	border: 3px double #FFF;
	width: 200px;
	margin-top: 25px;
}
div#miscbar{
	float:right;
	padding: 0px 12px;
	margin: 10px 8 8px 465px;
	min-height: 120px;
	background-color:#000;
	border-radius: 8px 8px;
	border: 3px double #FFF;
	width: 200px;

}
/*****Misc******/
h1{
	color: #FFF;
	font-size: 1.7em;
	font-weight: 700;
	background-color:#000;
}
Sir*DeviL is offline  
Old 05/19/2012, 20:39   #47
 
Schickl's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,064
Received Thanks: 539
Quote:
Originally Posted by Sir*DeviL View Post
Guys,
I mean something like
Code:
<?
echo 'div class="content">';
echo 'div class="etc">';
?>
What i mean is :
That we can use PHP With HTML.
infact its always PHP with HTML.
Html shows you how the site is pretty.
PHP shows you the scripts you did.(Register,Log-in,Log-Out);

That's what i meant!

and your site,. can be done by noob editor of sites.
well. i did it in 10 minutes
Here's the code.
Index.php
Code:
<html>
<head>
<meta charset="utf-8" />
<title>
Legendary-Online | Home Page
</title>
<link rel="stylesheet" href="styles.css" type="text/css" />
</head>

<body>
<?php include("./inc/header.php")?>

<div id="wrapper">
<div id="spacer">
<div id="content">
<?php include("./inc/statsbar.php")?>
<?php include("./inc/miscbar.php")?>

<div class="news-title">
Welcome to Legendary - Test.
</div>
TeST</div>

</div>
</body>
</html>
CSS(Styles.css)
Code:
/*******Header**********/

div#header{
	position: relative;
	margin: 0px;
	padding: 0px;
	background-color: #000;
	width: 100%;
	background-size: 100% 100%;
	color:#000;
	border-radius: 8px 8px;
	border: 3px double #000;	
}
/****Wrappers******/
div#wrapper{
	width: 960px;
	background-color: #000;
	margin: 20px auto 0px auto;
	border-radius: 8px 8px;
	border: 3px double #FFF;

}
div#hewrapper{
	width: 960px;
	margin: 0px auto 0px auto;
}
/****Content******/
div#content{
	background-color: #FFF;
	padding: 0px 12px;
	margin: 12px 8px 8px 8px;
	min-height: 520px;
	color: #FFF;
	border-radius: 8px 8px;
	border: 3px double #FFF;

}
/***Notice+Things*****/
.news-title{
	background-color: #000;
	padding: 0px 12px;
	margin: auto;
	min height: 100px;
	color: #FFF;
	color: #FFF;
	font-size: 2em;
	font-weight: 500;
	min-width: 190px;
	border-radius: 8px 8px;
	border: 3px double #FFF;
}
/*******Right Bars********/
div#statsbar{
	color: red;
	float:right;
	padding: 0px 12px;
	margin: 15px 8px 8px 8px;
	min-height: 220px;
	background-color:#000;
	border-radius: 8px 8px;
	border: 3px double #FFF;
	width: 200px;
	margin-top: 25px;
}
div#miscbar{
	float:right;
	padding: 0px 12px;
	margin: 10px 8 8px 465px;
	min-height: 120px;
	background-color:#000;
	border-radius: 8px 8px;
	border: 3px double #FFF;
	width: 200px;

}
/*****Misc******/
h1{
	color: #FFF;
	font-size: 1.7em;
	font-weight: 700;
	background-color:#000;
}
LOOL


"infact its always PHP with HTML."
no.

and LOL @ that PHP code
All you do there is include the actual code(I won't even say that doing it your way is pretty retarded)

I can say more about nearly every line you wrote, if you want me to(not going to do it if you won't read it lol)

Your post totally made my day
Schickl is offline  
Old 05/19/2012, 20:39   #48
 
elite*gold: 0
Join Date: Aug 2011
Posts: 16
Received Thanks: 9
i think you not tested my script so u talking bla bla bla
use registration and change password and forgot password
its simple but our thing is
when people reigstration , that user details not be store in db when user verify then that information store in db, its mean many people put fake email address, we protect fake user that it
niravmehta2009 is offline  
Old 05/19/2012, 21:37   #49
 
LastThief*'s Avatar
 
elite*gold: 60
Join Date: Feb 2012
Posts: 3,942
Received Thanks: 6,474
what you said is 1 min of work lold
LastThief* is offline  
Thanks
2 Users
Old 05/19/2012, 22:10   #50
 
Schickl's Avatar
 
elite*gold: 0
Join Date: Feb 2009
Posts: 1,064
Received Thanks: 539
Quote:
Originally Posted by niravmehta2009 View Post
i think you not tested my script so u talking bla bla bla
use registration and change password and forgot password
its simple but our thing is
when people reigstration , that user details not be store in db when user verify then that information store in db, its mean many people put fake email address, we protect fake user that it
1.WHAT did you just say
2.So you don't story it in the DB when a user registers, but only after he verified his account? GREAT now WHAT IS THE BENEFIT OF THIS
I don't see one. I bet you save it in a plain textfile haha

Your whole post doesn't really make sense overall
Schickl is offline  
Thanks
3 Users
Old 05/19/2012, 23:22   #51
 
LastThief*'s Avatar
 
elite*gold: 60
Join Date: Feb 2012
Posts: 3,942
Received Thanks: 6,474
Quote:
Originally Posted by Schickl View Post
1.WHAT did you just say
2.So you don't story it in the DB when a user registers, but only after he verified his account? GREAT now WHAT IS THE BENEFIT OF THIS
I don't see one. I bet you save it in a plain textfile haha

Your whole post doesn't really make sense overall
He is the best php coder why do you argue !
LastThief* is offline  
Thanks
1 User
Old 05/20/2012, 08:37   #52
 
elite*gold: 0
Join Date: Mar 2012
Posts: 492
Received Thanks: 125
Well, so, you don't save the Register, untill he gets an email verification ....

where the **** did you say that, in your register form.
it just says " Register Completed " or w/e.
not an
<? echo"E-Mail has been sent to $email you have to verify it so you can log-in the game.";
?>
w.t.h
That's really bad thing. to have on your sro server.

Fail Fail Fail.
Sir*DeviL is offline  
Old 05/20/2012, 10:21   #53
 
LastThief*'s Avatar
 
elite*gold: 60
Join Date: Feb 2012
Posts: 3,942
Received Thanks: 6,474
my username was lastthief and when i tried to enter my email the web told me i'm not using alphabet in my usermame lol
LastThief* is offline  
Old 05/20/2012, 10:30   #54
 
elite*gold: 0
Join Date: Aug 2010
Posts: 198
Received Thanks: 49
The website looks "cheap" i think every one who knows the basics of PHP can make it in a coupple hours.
And whats the ponit to make the email confirmation?
Will your server get laggy from much users? or what?
SniuurksT is offline  
Old 05/20/2012, 10:35   #55
 
redcoco's Avatar
 
elite*gold: 20
Join Date: Jan 2011
Posts: 735
Received Thanks: 764
Haha kids ...

#Request close..........
Kids over here
redcoco is offline  
Thanks
1 User
Old 05/20/2012, 10:51   #56
 
LastThief*'s Avatar
 
elite*gold: 60
Join Date: Feb 2012
Posts: 3,942
Received Thanks: 6,474
kids because we're saying the truth that your coder sux ?
LastThief* is offline  
Old 05/20/2012, 10:56   #57
 
elite*gold: 0
Join Date: Nov 2009
Posts: 1,163
Received Thanks: 1,161
Quote:
Originally Posted by redcoco View Post
Haha kids ...

#Request close..........
Kids over here
#closed


damnit, forgot I wasn't a mod here
ღ ∂ Ropp is offline  
Thanks
2 Users
Old 05/20/2012, 11:09   #58
 
ThElitEyeS's Avatar
 
elite*gold: 0
Join Date: Nov 2011
Posts: 333
Received Thanks: 186
guys that Indian guy called eddy
he didnt know how to make hello word page...
and he always do this no thing new
ThElitEyeS is offline  
Thanks
2 Users
Old 05/20/2012, 11:11   #59
 
elite*gold: 0
Join Date: Nov 2009
Posts: 1,163
Received Thanks: 1,161
I can do this site with free hosting, like weebly lol c;
ღ ∂ Ropp is offline  
Old 05/20/2012, 12:02   #60



 
Disco Teka's Avatar
 
elite*gold: 325
Join Date: Dec 2008
Posts: 14,546
Received Thanks: 8,721
You ain't funny guys. I will punish you when i am back home. Too lazy to write it all on my mobile.

Maybe you are better than him.This doesn't mean you are allowed to harass him. Just post something if you can contribute to the topic, otherwise you cause spam.

The only reason to close this would be to prevent spam from all trolls here. I am that kind and it will only result in some infractions.

Cya in 1 1/2 hours.
Disco Teka is offline  
Thanks
1 User
Closed Thread


Similar Threads Similar Threads
[Release]Ticket system for Metin2/Website
12/04/2011 - Metin2 PServer Guides & Strategies - 8 Replies
removed my content due to racist community members (again) Learn to respect you stupid little kids.
What about coding an efficient socket system?
08/10/2010 - CO2 Private Server - 22 Replies
I want to start a new project from scratch, and I thought about using my sockets from my last unfinished projects until I saw the .NET 3.5 methods. What do you guys think about the methods used in the sample which was released by MS? I`m talking about the BufferManager approach, and the pool for the SocketAsyncEventArgs. It seems nice to me, I implemented this in my project, with some modifications to fit my needs, what do you guys think about it? #edit : Also, would it be better if I coded...
[request] website coding help Read!
02/12/2009 - CO2 Private Server - 20 Replies
heey I have an question can somone make an config and reg page for TQ binarys in html coding becouse the .php is released already. if somone can help me add me on msn or leave an replay my mail is [email protected]



All times are GMT +1. The time now is 23:55.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.