I create a class in write it code in a file and give it a name (wwp.php) and make another file and name it index.php3 the my index.php3 code is ----- <? Include ("wwp.php"); $hotmail = new WWP; $hotmail->toppage(1231); $hotmail->bodyofpage(212,213) $hotmail->downpage(2132154); ?> ---- and my calss code is ----- <?php class wwp { Function toppage($title){ $title = "PHPOnly"; Echo' <html dir="rtl" > <head> <title>'.$title.'</title> </head>'; } Function bodyofpage($color,$words){ $color= " #CCCCCC"; $words="PHP"; Echo ' <body bgcolor='. $color.' > <h1>'.$words.'</h1> </body>'; } Function downpage($copyright) { $copyright = "PHPOnly"; Echo '<center><h4>'.$copyright .'</h4></center>'; } } ?> -------- what wrong !! __________________________________________________ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]