:http://www.themobiletracker.com/spanish/index.html
100% Recomendado.
100% Recomendado.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="menu.xsl"?>
<menu>
<item id="1">Menu 1</item>
<item id="2">Menu 2</item>
<item id="3">Menu 3</item>
<item id="4">Menu 4</item>
<item id="5">Menu 5</item>
</menu>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="menu">
<html>
<head>
<title>XML Y javascript EN UNO</title>
</head>
<body>
<xsl:for-each select="item">
<xsl:apply-templates select="."/>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template match="item">
<a href="#" onclick="alert('Hola:');void(0)">
<xsl:value-of select="text()"/>
<br/>
</a>
</xsl:template>
</xsl:stylesheet>
<!-- SiteSearch Google -->
<FORM method='GET' action='http://www.google.com/search'>
<input type='hidden' name='ie' value='UTF-8'>
<input type='hidden' name='oe' value='UTF-8'>
<table bgcolor='#FFFFFF'>
<tr>
<td>
<a href='http://www.google.com/'>
<img src='http://www.google.com/logos/Logo_40wht.gif' border='0' alt='Google'>
</a>
</td>
<td>
<input type='text' name='q' size='31' maxlength='255' value=''>
<input type='submit' name='btnG' VALUE='Buscar en sitio'>
<font size='-1'>
<br />
<input type='radio' name='sitesearch' value='' checked='checked'>WWW
<input type='radio' name='sitesearch' value='shellrootsecurity.blogspot.com'>in[S]eguridad [I]nformatica
<input type='radio' name='sitesearch' value='darioxhcx.blogspot.com'>Darioxhcx
</font>
</td>
</tr>
</table>
</FORM>
<!-- SiteSearch Google -->
function fWriteFile($sFile, $sCadena){
# Function for write in the file
if(file_exists($sFile)){
if(is_writable($sFile)){
$file = fopen($sFile, 'w');
fwrite($file, $sCadena, 26);
fclose($file);
}else{
return 'File not writable';
}
}else{
return 'File not exist';
}
}
# SET Variables
$sNombre = 'Alex';
$sNick = 'Shell Root';
$sForo = 'elhacker.net';
echo fWriteFile('PoC.txt', $sNombre." \n ".$sNick." \n ".$sForo." \n ");