Value passing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • naveenbj
    New Member
    • Dec 2007
    • 1

    #1

    Value passing

    I just wanted to know that how can i pass a value from one variable to another variable
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    If i understand you correct, try this:

    [php]
    $value = 9;
    $new = $value;
    echo $new;
    [/php]

    Comment

    Working...