Log in

View Full Version : view user information



vividona
11-10-2008, 10:17 AM
I need code

when I click on any username
view his/her information in my database

e.g. ip, email, registration date . . . etc

MrEvil
11-10-2008, 10:51 AM
http://www.php-mysql-tutorial.com/

I doubt anyone would simply write up a script for no other reason than you need it with not so little as a Thank You. Perhaps you would be interested in something like phpBB or VBulletin?

The page I linked above is a great place to start, as well as tizag.com. :)

vividona
11-10-2008, 11:08 AM
hi,


this is my fuuny simple script

http://bhl.43i.net/

but till now if I click on any user, the link drive me to the article itself.Plz see LAST MAMBERS at right-side


I have another problem in BODY textarea. when I write my article and need to go to new pragraph by clicking (Enter Button). My article viewed in only one pragraph.

--------------------------------------------------------------------------------

MrEvil
11-10-2008, 11:33 AM
I have another problem in BODY textarea. when I write my article and need to go to new pragraph by clicking (Enter Button). My article viewed in only one pragraph.
--------------------------------------------------------------------------------

The nl2br() function would fix that. It converts new lines into <br /> tags.

For example

<?php
$text = "Line 1. \n Line 2. \n Line 3. \n";
echo nl2br($text);
?>
Would output this
Line 1.
Line 2.
Line 3.