caller.php
Go to the documentation of this file.00001 <?php
00016 header( "Content-Type: text/html; charset=UTF-8" );
00017 ?>
00018 <html>
00019 <body>
00020 <form action="sequence.php" method="post">
00021 zoom: <input type="text" value="100" name="zoom"/>
00022 title: <input type="text" value="just talk" name="title"/>
00023 <br/>
00024 xml:
00025 <textarea name="xml" style="width:100%;height:400px">
00026 <sequence>
00027 <actors>
00028 <actor id="1" type="user">me:people</actor>
00029 <actor id="2" type="system">you:people</actor>
00030 </actors>
00031 <messages>
00032 <message type="call" from="1" to="2" text="hi"/>
00033 <message type="return" from="2" to="1" text="hello"/>
00034 </messages>
00035 </sequence>
00036 </textarea>
00037 <input type="submit" value="send"/>
00038 </form>
00039 <?php require_once( "footer.php" ); ?>
00040 </body>
00041 </html>