Ver Mensaje Individual
  #15 (permalink)  
Antiguo 31/03/2011, 03:26
nmontiu
 
Fecha de Ingreso: marzo-2011
Mensajes: 20
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: Como obtener una variable en PHP

Algo más se ha adelantado, pero sigo sin conseguirlo.

Veamos,

Por un lado tengo este fichero:

Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Mis entrenamientos</title>
</head>


<link rel="stylesheet" type="text/css" href="http://www.miWeb.com/entrenamiento.css" />
<script type="text/javascript" src="../prototype/prototype.js"></script>
<script type="text/javascript" src="../garmin/device/GarminDeviceDisplay.js"></script>
<script type="text/javascript">
      function newAjax()
      {
          var xmlhttp=false;
          try
          {
              // Creación del objeto AJAX para navegadores no IE
              xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
          }
          catch(e)
          {
              try
              {
                  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
              }
              catch(E) { xmlhttp=false; }
          }
          if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); }
          return xmlhttp;
      }

</script>

<script type="text/javascript">	
	
	function nombreFuncion(valor1){
          var ajaxData=newAjax();
          ajaxData.open("POST", 'creaXML.php', true);
          ajaxData.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
          ajaxData.send("atributo1="+valor1);
       
          ajaxData.onreadystatechange=function()
          {
              if (ajaxData.readyState==4)
              {
                alert(ajaxData.responseText);
              }
          }
     }
	  
	function load() {
	    var display = new Garmin.DeviceDisplay("garminDisplay", 
		{ 
			 pathKeyPairsArray: ["http://www.miWeb.com","c8a0e6942253c7f0222bdcaa24ef0409"],
			showReadDataElement: true,
			showProgressBar: false,
			showFindDevicesElement: true,
			showFindDevicesButton: false,
			showDeviceButtonsOnLoad: false,
			showDeviceButtonsOnFound: false,
			autoFindDevices: true,
			showDeviceSelectOnLoad: true,
			autoHideUnusedElements: true,
			showReadDataTypesSelect: false,
			readDataType: Garmin.DeviceControl.FILE_TYPES.tcxDir,
			deviceSelectLabel: "Selecciona dispositivo <br/>",
			readDataButtonText:			"Listado de entrenamientos",
			showCancelReadDataButton:		false,
			lookingForDevices: 'Buscando el dispositivo ... <br/><br/> <img src="../garmin/device/style/ajax-loader.gif"/>',
			uploadsFinished: "Transferencia Completada",
			uploadSelectedActivities: true,
			uploadCompressedData: false,    // Turn on data compression by setting to true.
			uploadMaximum: 5, 
			dataFound: "#{tracks} activities found on device",
			showReadDataElementOnDeviceFound: true,
			
			postActivityHandler: function(activityXml, display) 
			{
				$('activity').innerHTML += activityXml.escapeHTML();
			}
		}
		);
		
	}
	
</script>



<body onload="load()">
	<table border="0" cellpadding="4" cellspacing="0" width="100%">
		<tr>
			<td>
				<div id="garminDisplay"></div>
			</td>
		</tr>
		<tr>
			<td>
				 
				 <div id="activity"></div>
				 
			</td>
		</tr>
	</table>
</body>
</html> 

Y el fichero creaXML.php


Código PHP:
<?php
$text 
$_POST['atributo1'];
echo 
$text;

$file fopen("GPS/entrenamiento.xml""w+");
fwrite($file$text);
fclose($file);
?>

No hay forma de que el resultado del entrenamiento que viene de mi dispositivo GPS y se muestra en
Código HTML:
<div id="activity"></div> 
, en ese momento necesito llamar a la función
Código HTML:
nombreFuncion(con el contenido del div
)


Se entiende lo que me pasa?