Skip to content

Instantly share code, notes, and snippets.

@jonalter
Created July 19, 2011 01:18
Show Gist options
  • Select an option

  • Save jonalter/1091099 to your computer and use it in GitHub Desktop.

Select an option

Save jonalter/1091099 to your computer and use it in GitHub Desktop.
Desktop PHP Get Value
<html>
<head>
</head>
<body style="background-color:#1c1c1c;margin:0">
<div style="border-top:1px solid #404040">
<div style="color:#fff;;padding:10px">
Welcome to Titanium
<script>
function openWindow(){
var win = Titanium.UI.createWindow("app://test.php?fname=Jonathan");
win.open();
}
</script>
<input type="button" value="Click me" onclick="openWindow()" />
</div>
</div>
</body>
</html>
<?php
echo "hi there ";
echo $_GET["fname"];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment