Hi all
It's me again.. I have a variable to which i am assigning a value in one function. I have to use the variable with the same value assigned in another function. How can I do this. I've tried to portray this in the following codes
Thanks.
[PHP]Function x
{
$a =25
}
Function y
{
If ($a=25)
sql_insert();
}[/PHP]
It's me again.. I have a variable to which i am assigning a value in one function. I have to use the variable with the same value assigned in another function. How can I do this. I've tried to portray this in the following codes
Thanks.
[PHP]Function x
{
$a =25
}
Function y
{
If ($a=25)
sql_insert();
}[/PHP]
Comment