hi friends
can u tell me how to convert string data type value to int data type value......
like this .................
string $am="A",$temp;
int $pm=5;
$temp=(string)$pm;//this one is possible
print $temp; // print 5
but i want to transfer string value in int variable
$pm=$am;// its wrong
plzzzzzz tell me how to solve this problem







