Dear Friends,
My Problem is as follows
abc.php
I am one php function 'PHP_MYFUNCTION()' which returns a string value ,
<?
function PHP_MYFUNCTION()
{
$mystring="this is for testing";
return $mystring;
}
?>
I am also having a javascript function , in that function I have to get the value of the string value that will return by the php funciton PHP_MYFUNCTION()
<script language=javascript>
function myjavafunction()
{
var myvariable="";
// how can I assign the string value returned by PHP_MYFUNCTION() function to myvariable
}
</script>
regards
bvsureshbabu