Hi,
I've got a search form that fires off to a third party PHP file to get the results and I'm hoping to have the results point to an iframe on a new page that loads. I have no real idea of where to start with this. Can anyone help?
ThanksHTML Code:<form method="get" action="http://www.yachtworld-international.com/pls/searchbjmarine.php" target="results"> <input type="hidden" name="slim" value="pp273293" /> <strong>Manufacturer</strong> <input type="text" name ="man" value=""><br /> <strong>Type</strong> <select name="type"> <option value=""> ALL</option> <option value="(Power)" > Power</option> <option value="(Sail)" > Sail</option> </select><br /> <strong>Length </strong> From:<input type="text" name ="fromLength" value=""> To:<input type="text" name ="toLength" value=""><br /> <strong>Units</strong> <select name="luom" > Feet<option selected value="126"> Feet</option> Meters<option value="127"> Metres</option> </select><br /> <strong>Year</strong> From:<input type="text" name ="fromYear" value=""> To:<input type="text" name ="toYear" value=""><br /> <strong>Price</strong> From:<input type="text" name ="fromPrice" value=""> To:<input type="text" name ="toPrice" value=""><br /> <strong>Condition</strong> <select name="is"> All:<option value='' > All </option> New:<option value='true' > New </option> Used:<option value='false' SELECTED> Used </option> </select> <br /> <input name="search" type="submit" value="SEARCH" /> </form>
Denis