A script like Personal Notepad?

UniqueRain

Registered Member
Joined
Feb 19, 2008
Messages
69
Reaction score
10
I am looking for a script for personal notepad like the one you see in user panel. I just need one for my website. Anyone know of one?
 
check hots///cripts.com plenty of free php scripts.

(remove ///)
 
what's that type of notepad called? I can't find anything similar to it.
 
Outline of action of such a notebook:
PHP:
<?
function form($txt)
{
	echo '
	<form name="personalnotepad" method="post" action="usercp.php">
	<textarea name="notepad" id="notepad" rows="7" cols="45">'.$txt.'</textarea>
	<input type="submit" value="Save Notepad" />';
}

$txt=$_POST['notepad'];
if($txt)
	{
	//save in database
	}
else
	{
	//check txt in database
	//$txt_db= txt from database
	form($txt_db);
	}
?>

regards
 
Back
Top