Please review my client's news web site
Please review my client's news web site
please review http://www.qnews.tk.Re: Please review my client's news web site
yes it is!Re: Please review my client's news web site
ari wrote:please review http://www.qnews.tk.
Hi, can you mail me the source code ? with the source code inside a .rar file or .zip file to my Mail : yew_lee99@yahoo.com . Thx !
Re: Please review my client's news web site
why?Re: Please review my client's news web site
U need it , i need to know the content and the codes , i also nid to improve it and put ur name on the "copyright " below .Re: Please review my client's news web site
fine... the source is at http://www.qnews.tk/qNews%20SRC.zipto make the login script, you need to make a directory called login.
then you have to make a login script in login/index.php and make a register system in login/register.php. also you need to make some kind of admin script.
the session names for the login and admin scripts are:
login: regSess
admin: admnSess
Re: Please review my client's news web site
aris wrote:fine... the source is at http://www.qnews.tk/qNews%20SRC.zip
to make the login script, you need to make a directory called login.
then you have to make a login script in login/index.php and make a register system in login/register.php. also you need to make some kind of admin script.
the session names for the login and admin scripts are:
login: regSess
admin: admnSess
sorry , i am new to php , i dont know about php scripting , can u teach me how to create a website like yours ??
Re: Please review my client's news web site
I'm sorry, but I'm not a good teacher. But, there is a simple login script tutorial on nettuts+, and there is a handy trick to write to files called fwrite.Here is an fwrite example:
$h = fopen("example.php", "w");
fwrite($h, "hi");
and if you want a blog type script, then here it is:
[code]
<?php session_start();?>
<?php
if($_POST) {
$postName = $_POST['postTitle'];
$postContent = $_POST['postContent'];
if(file_exists("blogContent.php")) {
$h = fopen("blogContent.php", "c");
$h2 = fopen("blogContent.php", "r");
$at = fread($h2, 100000);
fwrite($h, "<h3>" . $postName . "</h3><br/><pre>" . $postContent . "</pre><hr width="50%"/>" . $at);
} else {
$h = fopen("blogContent.php", "x");
fwrite($h, "<h3>" . $postName . "</h3><br/><pre>" . $postContent . "</pre><hr width="50%"/>");
}
}
?>
<!doctype html>
<html>
<head>
<title>
Post:
</title>
</head>
<body>
<form action="" method="POST">
<input type="text" name="postTitle" placeholder="Post Title"/>
<br/>
<textarea name="postContent" cols="20" rows="30" placeholder="Post Content"></textarea><br/>
<input type="submit" style="background-color:grey"/>
</form>
</body>
</html>
Re: Please review my client's news web site
Where is the news source ??Re: Please review my client's news web site
well it need to be properly align and fix its width.i think you made it for mobile users am i right ?
and on main page add news rather then an empty page.
your website looks like its just a webpage not a complete website
try to add more content and a better design good luck !