phpnewbei Posted September 27, 2010 Share Posted September 27, 2010 Need some help with Profile page, it goes like this: <html> <head> <style type="text/css" media="all"> @import url("style.css"); </style> </head> <body> <div id="header"> <h1><a href="index.php">ProjecTM</a></h1> </div> <div id="menu"> <ul> <a href="index.php">News</a> <a href="guestbook.php">Guestbook</a> <a href="changepassword.php">Change Password</a> <a href="logout.php">Log out</a> </ul> </div> <?php include("dbconnect.php"); session_start(); echo "<div id=\"homeform\">"; if(isset($_SESSION["username"])){ $link1 =' <a href="members.php?uname&changeinfo=' . $_SESSION["username"] . '"> Change information </a>'; if($_SESSION["username"] == isset($_GET["uname"])){ echo "hej"; } elseif ($_SESSION["username"] != isset($_GET["uname"])) { echo "hejdå"; } } echo "</div>"; ?> </body> </html> THe link to the profile page goes like this: echo "<a href=\"members.php?uname=" . $user . "\">Your page</a>"; Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/ Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 I don't know what you want but use session_start() before any output Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116287 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 What do you mean? I have a session_start(); right after the php tags. Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116288 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 You have a lot of html code (that's also output) before the php tag. in your case it should be: <?php session_start(); ?> html blah-blah-blah.... <?php additional php code ?> Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116291 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 I've done that now, but it still don't work cuz in my address field When I'm logged in as "Machram" and click in my profile the address field is : http://localhost/project/members.php?uname=Machram When I go to like "http://localhost/project/members.php?uname=Test" It still says the same thing on the page "Echo "Hello";" Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116298 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 ($_SESSION["username"] == isset($_GET["uname"])) that's wrong. isset returns just TRUE or FALSE. remove isset() from this part of your code. Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116300 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 Ahh, thankyou It works properly now. I'll try to work on my own now, if it's something i'll write it here. Again, thankyou! Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116302 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 you're welcome! use isset() in a separate if () at the beginning like $uname = isset($_GET['uname']) ? $_GET['uname'] : 'guest'; (after that use $uname instead of $_GET['uname']) Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116305 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 Could you explain more how the code works and what it means? Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116306 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 $uname = isset($_GET['uname']) ? $_GET['uname'] : 'guest'; means if (isset($_GET['uname'])) { // if uname variable is supplied by the GET request $uname = $_GET['uname']; } else { $uname = 'guest'; // if uname was not supplied we set it to 'guest' } after that you should use ... $_SESSION['username'] == $uname (instead of $_GET['uname']) Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116307 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 So I should place $uname = isset($_GET['uname']) ? $_GET['uname'] : 'guest'; in the beginning? Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116311 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 Now I have an UPDATE error heh, here's my code: elseif ($_SESSION["username"] == (isset($_GET["changeinfo"]))) {$sql = mysql_query("SELECT * FROM userinfo WHERE username='" . $_SESSION["username"] . "'");while($row = mysql_fetch_array($sql)){echo "<form method=\"POST\" action=\"members.php?uname&changeinfo=" . $_SESSION["username"] . "\">";echo "<input type=\"text\" name=\"name\" value=\"" . $row["firstname"] . "\">";echo "<input type=\"submit\" value=\"Change\">";echo "</form>";$firstname = isset($_POST["name"]);mysql_query("UPDATE userinfo SET firstname='$firstname' WHERE username=" . $_SESSION["username"] . "");}} Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116319 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 So I should place $uname = isset($_GET['uname']) ? $_GET['uname'] : 'guest'; in the beginning? yes but after session_start(); Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116323 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 Now I have an UPDATE error heh, here's my code: elseif ($_SESSION["username"] == $_GET["changeinfo"]) { $sql = mysql_query("SELECT * FROM userinfo WHERE username='" . $_SESSION["username"] . "'"); while($row = mysql_fetch_array($sql)) { echo '<form method="POST" action="members.php?uname&changeinfo="' . $_SESSION["username"] . '">'; echo '<input type="text" name="name" value="' . $row["firstname"] . '">'; echo '<input type="submit" value="Change">'; echo '</form>'; $firstname = $_POST["name"]; mysql_query("UPDATE userinfo SET firstname='$firstname' WHERE username='" . $_SESSION["username"] . "'"); } } Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116327 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 What's the differences between " and ' ? By the way, it doesn't update the table ;/ Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116331 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 Now, If I write something in my input fields and update, it works, but when I go back and change the information again, the field in my database gets emtpy :S My guess would be that when the database have been update, nothing happends, you'll return to the input field again. Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116337 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 What's the differences between " and ' ? http://www.php.net/manual/en/language.types.string.php By the way, it doesn't update the table ;/ show whole script Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116386 Share on other sites More sharing options...
phpnewbei Posted September 27, 2010 Author Share Posted September 27, 2010 <?php echo "<div id=\"homeform\">"; if(isset($_SESSION["username"])){ $link1 =' <a href="members.php?uname&changeinfo=' . $_SESSION["username"] . '"> Change information </a>'; $uname = isset($_GET['uname']) ? $_GET['uname'] : 'guest'; if($_SESSION["username"] == $uname){ echo "hej"; echo $link1; } elseif ($_SESSION["username"] == $_GET["changeinfo"]) { $sql = mysql_query("SELECT * FROM userinfo WHERE username='" . $_SESSION["username"] . "'"); while($row = mysql_fetch_array($sql)){ echo '<form method="POST" action="members.php?uname&changeinfo=' . $_SESSION["username"] . '">'; echo '<input type="text" name="name" value=' . $row["firstname"] . '>'; echo '<input type="submit" name="submit" value="Change">'; echo '</form>'; $firstname = $_POST["name"]; mysql_query("UPDATE userinfo SET firstname='$firstname' WHERE username='" . $_SESSION["username"] . "'"); } if($_POST["submit"]) { echo "Success!"; } } else { echo "du suger"; } echo "</div>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116389 Share on other sites More sharing options...
DigitalMind Posted September 27, 2010 Share Posted September 27, 2010 Of course if(isset($_SESSION["username"])){ is false. You've missed out session_start();! Quote Link to comment https://forums.phpfreaks.com/topic/214524-profile-page-php/#findComment-1116477 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.