nyl
01-08-2006, 12:18 AM
I built a contact form.
I'd like to have the contact form send the info through HTTP GET POST or something and give a feedback to the customer.
any clue on how to do it ?
thanks
__________
<canvas height="450" width="650">
<window x="20" y="20" width="340" height="260" title="Contact Window" resizable="false" closeable="true">
<view x="15" y="20">
<simplelayout axis="y" spacing="8" />
<view>
<text>Your name</text>
<edittext x="70" name="yourname" width="220" height="25"></edittext>
</view>
<view>
<text>E-mail</text>
<edittext x="70" name="email" width="220" height="25"></edittext>
</view>
<view>
<text>Password</text>
<edittext x="70" name="password" width="220" height="25"></edittext>
</view>
<view>
<text>Country</text>
<edittext x="70" name="country" width="220" height="25"></edittext>
</view>
<view>
<button x="140" y="10">SEND</button>
</view>
</view>
</window>
</canvas>
I'd like to have the contact form send the info through HTTP GET POST or something and give a feedback to the customer.
any clue on how to do it ?
thanks
__________
<canvas height="450" width="650">
<window x="20" y="20" width="340" height="260" title="Contact Window" resizable="false" closeable="true">
<view x="15" y="20">
<simplelayout axis="y" spacing="8" />
<view>
<text>Your name</text>
<edittext x="70" name="yourname" width="220" height="25"></edittext>
</view>
<view>
<text>E-mail</text>
<edittext x="70" name="email" width="220" height="25"></edittext>
</view>
<view>
<text>Password</text>
<edittext x="70" name="password" width="220" height="25"></edittext>
</view>
<view>
<text>Country</text>
<edittext x="70" name="country" width="220" height="25"></edittext>
</view>
<view>
<button x="140" y="10">SEND</button>
</view>
</view>
</window>
</canvas>