Hehe ja som sagt så har jeg ikke selv skrevet scriptet, og da jeg ikke er gennembagt hvad angår PHP, så tør jeg ikke pille mere ved det end nødvendig
Jeg har gjorde som du sagde Jonas (Decko), og det fjernede også cookie problemet, men nu står jeg tilbage med den 'header information'!
Warning: Cannot modify header information - headers already sent by (output started at /web/www/frac/users/a/artificialcombat/content/user/login.php:5) in /web/www/frac/users/a/artificialcombat/content/user/login.php on line 60
Warning: Cannot modify header information - headers already sent by (output started at /web/www/frac/users/a/artificialcombat/content/user/login.php:5) in /web/www/frac/users/a/artificialcombat/content/user/login.php on line 61
Her er hele koden igen
<link rel="stylesheet" href="../../style.css" type="text/css"/>
<link href="../../style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body,td,th {
font-family: Verdana;
font-size: 10px;
color: 0099FF;
}
body {
background-color: #333333;
}
a {
font-size: 9px;
color: 0099FF;
}
a:link {
color: FFFFFF;
}
a:hover {
color: FFFFFF;
}
a:active {
color: FFFFFF;
}
a:visited {
color: 0099FF;
}
-->
</style>
<?php
ob_start();
include("config.php");
// connect to the mysql server
$link = mysql_connect($server, $db_user, $db_pass)
or die ("Could not connect to mysql because ".mysql_error());
// select the database
mysql_select_db($database)
or die ("Could not select database because ".mysql_error());
$match = "select id from $table where username = '".$_POST['username']."'
and password = '".$_POST['password']."';";
$qry = mysql_query($match)
or die ("Could not match data because ".mysql_error());
$num_rows = mysql_num_rows($qry);
if ($num_rows <= 0) {
echo "Sorry, there is no username or password with: <strong>".$_POST['username']."</strong><br>";
echo "<a href=login.html>Try again</a>";
exit;
} else {
setcookie("loggedin", $_POST['username'], time()+(3600 * 24));
setcookie("username", $_POST['username'], TRUE);
echo "<br>Welcome: <strong>".$_POST['username']."</strong><br>";
echo "Continue to the <a href=members.php>members</a> section.";
}
ob_end_flush();
?>
Forresten: Tak til dem som allerede har hjulpet mig! Dejligt at se folk er hjælpsomme
Men jeg har desværre stadig et problem som jeg håber at få rettet op på
Indlæg senest redigeret d. 13.08.2007 18:06 af Bruger #7846