I'm attempting to pull SQL data. A user's login is their username, but I don't want that displayed to any other users. Hence the nicename I have defined. It's another display name that has nothing to do with a users login info; When I try to send a message I want the from field to display their display name; does anyone know why this ends up sending no data through the query in the from field?
<?php
$link = mysqli_connect("$server", "$user", "$pass", "$webdb");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT nicename FROM user WHERE name=$_SESSION['admin_login']";
$result = mysqli_query($link, $query);
$row = mysqli_fetch_array($result, MYSQLI_ASSOC);
$display_name = $row['nicename'];
{
echo '<input name="from" type="hidden" value="' .$display_name.'">';
}
mysqli_free_result($result);
mysqli_close($link);
?>
Alright, so I ran the query and fixed the display name variable; When I the query I recieve.
INSERT INTO messages (`owner`, `from`, `content`, `date`, `title`) VALUES ('Morgan', '', 'Query', 'Oct/16/2012', 'Testing The ')
The From variable is still displaying nothing; I added a debug page to my site where I put in my query as
$query = "SELECT nicename FROM user WHERE username=$_SESSION[admin_login]";
$result = mysqli_query($link, $query);
$row = mysqli_fetch_array($result, MYSQLI_ASSOC);
I then echoed my query and also echoed $row[nicename] Where I receive back on the page: SELECT nicename FROM user WHERE username=**<--It did add my username; however the echo on $row[nicename] returns no results on the page.
{
echo $query;//<--Returns Query with the correct login variable.
echo '<br>';
echo $row['nicename'];//<--Returns no info.
}