This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<p id="geo">Click para saber tus coordenadas</p> | |
<button onClick="getLocation()"> Aqui</button> | |
<script type="text/javascript"> | |
var geo=document.getElementById("geo"); | |
function getLocation() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<p id="geo">Click para saber tus coordenadas</p> | |
<button onClick="getLocation()"> Aqui</button> | |
<script type="text/javascript"> | |
var geo=document.getElementById("geo"); | |
function getLocation() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<p id="geo">Click para saber tus coordenadas</p> | |
<button onClick="getLocation()"> Aqui</button> | |
<div id="mapholder"></div> | |
<script type="text/javascript"> | |
var geo=document.getElementById("geo"); | |
var holder=document.getElementById("mapholder"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$nombre =$_GET['name']; | |
$email =$_GET['email']; | |
$message =$_GET['message']; | |
/*$nombre =$_POST['param1']; | |
$message =$_POST['param2']; | |
$email =$_POST['param3'];*/ | |
echo "contacto ".$nombre." ".$message." ".$email; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by JetBrains PhpStorm. | |
* User: emedinaa | |
* Date: 19/09/11 | |
* Time: 10:00 AM | |
* To change this template use File | Settings | File Templates. | |
*/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.senamhi.projects.test; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.util.Log; | |
import android.view.Menu; | |
import android.view.View; | |
import android.view.View.OnClickListener; | |
import android.widget.Button; | |
import android.widget.TextView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="assets/css/style.css"> | |
</head> | |
<body> | |
<div id="div1" class="mydiv" onclick="changeColor(this)"></div> | |
<div id="div2" class="mydiv" onclick="changeColor(this)"></div> | |
<div id="div3" class="mydiv" onclick="changeColor(this)"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.area51.pappactivity; | |
import android.net.Uri; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.content.ActivityNotFoundException; | |
import android.content.Intent; | |
import android.view.Menu; | |
import android.view.View; | |
import android.view.View.OnClickListener; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.area51.proyects.papphelloworld; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.util.Log; | |
import android.view.Menu; | |
import android.view.View; | |
import android.view.View.OnClickListener; | |
import android.widget.Button; | |
import android.widget.Toast; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log.v("AndroidTips", "Hola a todos , bienvenidos a esta comunidad para desarrolladores Android donde recopilaremos trucos, tips y snippets que siempre nos ayudan cuando codeamos "); |
OlderNewer