buenas noches tengo este problema, tengo el siguiente codigo
<html>
<head>
<title>Llamar funcion de Php desde Javascript</title>
<script>
function clic(algo){
var variableJscript = "<?
include_once 'prueba.php';
$obj = new prueba();
echo $obj->respuesta(algo);
?>";
document.write("<br>llamada a funcion Php desde Javascript : "+variableJscript);
}
</script>
</head>
<body>
<form name="form">
<input type="text" name="t"/>
<input type="button" value="Dar click" onclick="clic(document.form.t.value)"/>
</form>
</body>
</html>
necesito saber como pasarle el valor obtenido mediante javaScript a la funcion php ke tengo ahi.. como esta hecho aki me da da como valor ke es la palabra algo
..salu2 yo...