View Single Post
Old 05-07-2009, 10:58 PM   #2 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Let's do it one step at a time. Let's first clean up your query..



PHP Code:
$notesquery mysql_query("SELECT * FROM user WHERE `username` = '".$username."' AND `password` = '".$password."' ") or die(mysql_error()); 
            
$notesresult mysql_fetch_array$notesquery ); 
$notes $notesresult['notes']; 
allworknoplay is offline  
Reply With Quote