xwords/xwords4/android/scripts/market.php
Andy2 9c298a16e7 The email apps won't display non-http schemes as clickable links, so
go with html and encode both the invite and install links as php refs
that get redirected.  Works, but eliminates SMS as sending mechanism.
2011-08-06 02:57:14 -07:00

20 lines
331 B
PHP

<?php
print <<<EOF
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Crosswords install redirect</title>
<meta http-equiv="REFRESH"
content="0;url=market://search?q=pname:org.eehouse.android.xw4">
</head>
<body>
<p>Redirecting to the market...</p>
</body>
</html>
EOF;
?>