Re: [PHP-DB] Dynamic text for every user

2009-03-14 Thread Daniel Carrera

Wilson Osemeilu wrote:

How do i create a table with user id and password, where every user get to see 
a dynamic text related to them only
I get the same dynamic text when every user logs in but i really want them to 
see their details in the mysql database only. Please help php/mysql users


You mean just a single piece of text? Like the anti-phishing thing some 
banks do where you enter a secret phrase and the bank displays it to you 
after you login, so if the text is wrong you know there is a problem? Is 
that what you want?


CREATE TABLE users (
idINT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
loginCHAR(30) CHARACTER SET utf8 UNIQUE,
passwordCHAR(40) CHARACTER SET ascii,
secretPhraseCHAR(40) CHARACTER SET utf8
);

Is this what you want? Or did I misunderstand your question?

Cheers,
Daniel.


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Dynamic text for every user

2009-03-14 Thread Phpster



On Mar 14, 2009, at 8:27, Wilson Osemeilu  wrote:

How do i create a table with user id and password, where every user  
get to see a dynamic text related to them only
I get the same dynamic text when every user logs in but i really  
want them to see their details in the mysql database only. Please  
help php/mysql users


Thanks




It's pretty simple.

Select * from content where id = $id and page='$page'

To get the content for a specific page

Bastien

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php