i wanting to know if it is possible to insert and integrate a php file into the item description
the php is for a who is script for domain name registration
you can see a working version here : http://www.1st-class-webdesigns.co.uk/whois/whois.php

what i want rather taking the customer away from my shop is to just add this script into the description so they can check if the domain they want is avalaible

anyone got any idea's?

i have the following html but when i click the submit button the cart picks it up and adds the product to the cart instead of the htlm script running the whois result
<form name='whois_search' method='POST' action='whois/whois.php'>
<input type='hidden' name='page' value='WhoisSearch'>
<input name='domain' type='text' value='desired domain name' size="30" maxlength="63">
<select name="ext0">
<option value="ru" selected>.ru</option>
<option value="com">.com</option>
<option value="net">.net</option>
<option value="org">.org</option>
<option value="us">.us</option>
<option value="biz">.biz</option>
<option value="info">.info</option>
<option value="tv">.tv</option>
<option value="ws">.ws</option>
<option value="cc">.cc</option>
<option value="name">.name</option>
<option value="in">.in</option>
<option value="cn">.cn</option>
<option value="be">.be</option>
<option value="it">.it</option>
<option value="net.ru">.net.ru</option>
<option value="org.ru">.org.ru</option>
<option value="pp.ru">.pp.ru</option>
<option value="msk.ru">.msk.ru</option>
<option value="spb.ru">.spb.ru</option>
<option value="su">.su</option>
<option value="ру">.ру</option>
<option value="ком">.ком</option>
<option value="нет">.нет</option>
<option value="орг">.орг</option>
</select>
<input type='submit' id='Submit' value='submit'>
</form>