hello all... :)

I made a class with two functions ini it.
function setA( ) and function showA( ).
inside the first function I declare $a = "first alpha";
How can I display $a variable with echo $a; from the second function....?
I tried with the codes below, still display nothing.
Thanks for all the help....

Jodi

codes:
<?php
/* remove this
class abjad
{
    var $a;
   
    function setA()
    {
        $a = "first alpha";
    }

    function showA()
    {
        echo $a."\n";
    }
}

$alpha = new abjad();
$alpha->showA();

*/
?>






------------------------ Yahoo! Groups Sponsor --------------------~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/HKFolB/TM
--------------------------------------------------------------------~-> 

Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to