[Coding]New type website system

05/19/2012 18:54 Sir*DeviL#46
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;
}
05/19/2012 20:39 Schickl#47
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
05/19/2012 20:39 niravmehta2009#48
i think you not tested my script so u talking bla bla bla
[Only registered and activated users can see links. Click Here To Register...] 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
05/19/2012 21:37 LastThief*#49
what you said is 1 min of work lold
05/19/2012 22:10 Schickl#50
Quote:
Originally Posted by niravmehta2009 View Post
i think you not tested my script so u talking bla bla bla
[Only registered and activated users can see links. Click Here To Register...] 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
05/19/2012 23:22 LastThief*#51
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 !
05/20/2012 08:37 Sir*DeviL#52
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.
05/20/2012 10:21 LastThief*#53
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
05/20/2012 10:30 SniuurksT#54
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?
05/20/2012 10:35 redcoco#55
Haha kids ...

#Request close..........
Kids over here
05/20/2012 10:51 LastThief*#56
kids because we're saying the truth that your coder sux ?
05/20/2012 10:56 ღ ∂ Ropp#57
Quote:
Originally Posted by redcoco View Post
Haha kids ...

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


damnit, forgot I wasn't a mod here :mad:
05/20/2012 11:09 ThElitEyeS#58
guys that Indian guy called eddy
he didnt know how to make hello word page...
and he always do this no thing new :awesome:
05/20/2012 11:11 ღ ∂ Ropp#59
I can do this site with free hosting, like weebly lol c;
05/20/2012 12:02 Disco Teka#60
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.