[PHP/JS] ¿Trasladar variables?

Iniciado por Ori-chan, 11 Enero 2013, 16:59 PM

0 Miembros y 1 Visitante están viendo este tema.

Ori-chan

Código (lenguage) [Seleccionar]
<!Doctype html>
<html>
<head>
</head>
<script type="text/javascript">
function abc ()
var fas=$_REQUEST['nombre'];
document.write (fas);
</script>
<body>
<form method="post">
  Ingrese algo:
  <input type="text" name="frase">
  <br>
  <input type="submit" value="confirmar">
</form>
<input type="button" onclick="abc()">
</body>
</html>


Se supone que tiene que poner la frase que escribas en el recuadro.


Shell Root

1. Con jQuery sería más fácil.
2. Supongo que,...
Código (javascript) [Seleccionar]
function js(){
var hola = <?php echo "hola"?>;
}
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.

Ori-chan

No sabia que se podía hacer eso, gracias!  ;D


Ori-chan

Código (lenguage) [Seleccionar]
<!Doctype html>
<html>
<head>
</head>
<script type="text/javascript">
function abc ()
var fas= <?php $_REQUEST['frase'?>;
document.write(fas);
</script>
<body>
<form method="post">
Ingrese algo:
<input type="text" name="frase">
<br>
<input type="submit" value="confirmar">
</form>
<input type="button" onclick="abc()">
</body>
</html>


Sige sin funcionar  :huh:



Shell Root

Es,
Código (php) [Seleccionar]
<?php echo $_REQUEST['frase']; ?>
ó
Código (php) [Seleccionar]
<?= $_REQUEST['frase']; ?>
Por eso no duermo, por si tras mi ventana hay un cuervo. Cuelgo de hilos sueltos sabiendo que hay veneno en el aire.