Jump to content

[SOLVED] Echoing a mysql cell?


Snooble

Recommended Posts

Hello everyone,

I want to show the user his/her email address they signed up with. It's stored in a database.

how would i echo their email to them once they're logged in with thier username and password?

The field is called "Email".

Is that understandable? Just like:

Once the user is logged in it should show there email where it once said "log in". I believe it should be a isset(); or if statement. But i'm not sure.

Thanks

Snooble



Link to comment
https://forums.phpfreaks.com/topic/36193-solved-echoing-a-mysql-cell/
Share on other sites

[code]<?php
$host="**********"; // Host name
$username="********"; // Mysql username
$password="**********"; // Mysql password
$db_name="************"; // Database name
$tbl_name="web_members"; // Table name

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

// username and password sent from signup form
$myemail=$_POST['myemail'];
$mypassword=$_POST['mypassword'];

$sql="SELECT * FROM $tbl_name WHERE Email='$myemail' and Password='$mypassword'";
$result=mysql_query($sql);

// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myemail and $mypassword, table row must be 1 row

if($count==1){
// Register $myusername, $myemail and redirect to file "login_success.php"
session_register("myemail");
session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>
[/code]

I believe that is what you want.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.