Author Archives: Admin

In Aps package How to change the URI

Sample URI you can see in your eclipse as below

uuid:e581bb5d-a29e-426b-9fd7-345b8864727e

URI will be different for different package.we can generate unique id using online

please try with the following link

http://www.guidgenerator.com/

How to pass data if browser does not support cookies.

In this case you can use Post method see the example below

create one php/html file :

<html>
<body>
<form action=”output.php” method=”post”>

Name: <input type=”text” name=”name”>
<input type=”Submit” name=”Submit”>
</form>
</body>
</html>

if you execute the above page values will comes in the output.php file

<?php

echo $_POST[“name”];

?>