Jump to content

[SOLVED] Simple Session Question


Zepo.

Recommended Posts

I have a session value : $_SESSION['id']

 

And i want to do a database pull

 

 

$notepad=mysql_query("SELECT notes FROM staff WHERE id='$_SESSION['id']'");

$notepad=mysql_fetch_array($notepad);

 

Not sure how to get the session to work out in it...

Link to comment
Share on other sites

The session start is there and the id is defined, but i get Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/zepo/public_html/devlopment/admincp/includes/notepad.php on line 7.

Link to comment
Share on other sites

$notepad=mysql_query("SELECT notes FROM staff WHERE id='$_SESSION['id']'");

 

That line , the error basicly means that the session isnt showing up.

 

Heres the whole file:

 

<?
session_start(); 
if (isset($_SESSION['name'])) {
function notepad(){

mysql_query("SELECT notes FROM staff WHERE id='$_SESSION['name']'");

echo"
<body style='margin:0px'>
<div class='pagetitle'>Welcome Back!</div>
<div style='margin:10px'>

<br />
<form method='post'>
<table cellpadding='4' cellspacing='0' border='0' align='center' width='95%' class='tborder' id='optionsform'>
<colgroup span='2'>
<col style='width:45%'></col>
<col style='width:55%'></col>
</colgroup>
<tr>
<td class='tcat' align='center' colspan='2'>
<b>Admin CP Main</b>
</td>
</tr>
<tr valign='top'>
<td class='optiontitle'  colspan='2'><div>Notepad</div></td>
</tr>
<tbody id='tbody_keywords'>
<tr valign='top'>
<td class='alt1'><div class='smallfont' align='center'>
<textarea class='button' name='note' value='note' maxlength='600' style='width:950px; height:180px;'>$notes</textarea><BR />
<input type='hidden' name='act' value='notepad2'>
<input type='submit' name='submit' value='Update Notepad'></div>
</form></td>
</tr>
</tbody>
</table>";
}

function update($note){
echo"Updated";

}

}else{
echo"You are not logged in!";
}
?>

Link to comment
Share on other sites

try this

<?php
session_start(); 
notepad();
function notepad(){
$q = "SELECT notes FROM staff WHERE id='".$_SESSION['name']."'";
mysql_query($q) or die(mysql_error());

echo"
<body style='margin:0px'>
<div class='pagetitle'>Welcome Back!</div>
<div style='margin:10px'>

<br />
<form method='post'>
<table cellpadding='4' cellspacing='0' border='0' align='center' width='95%' class='tborder' id='optionsform'>
<colgroup span='2'>
<col style='width:45%'></col>
<col style='width:55%'></col>
</colgroup>
<tr>
<td class='tcat' align='center' colspan='2'>
<b>Admin CP Main</b>
</td>
</tr>
<tr valign='top'>
<td class='optiontitle'  colspan='2'><div>Notepad</div></td>
</tr>
<tbody id='tbody_keywords'>
<tr valign='top'>
<td class='alt1'><div class='smallfont' align='center'>
<textarea class='button' name='note' value='note' maxlength='600' style='width:950px; height:180px;'>$notes</textarea><BR />
<input type='hidden' name='act' value='notepad2'>
<input type='submit' name='submit' value='Update Notepad'></div>
</form></td>
</tr>
</tbody>
</table>";
}

function update($note){
echo"Updated";

}

}else{
echo"You are not logged in!";
}
?>

Link to comment
Share on other sites

Hmm, no errors, but the notes arnt displaying...

 

Because you never save (and later use) any result from your query. The general syntax for a select query should be something like...

 

<?php

 $sql = "SELECT fld FROM foo;";
 if ($result = mysql_query($sql)){
   if (mysql_num_rows($result)){
     while ($row = mysql_fetch_assoc($result)) {
       echo $row['fld'] . "<br />";
     }
   } else {
     echo "No results found";
   }
 } else {
   echo "Query failed<br />" . mysql_error() . "<br />$sql";
 }

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.