July 15, 200818 yr 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? <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> Thanks Denis
July 18, 200818 yr I'm hoping to have the results point to an iframe on a new page that loads. So the process goes as follows?: FORM.html (gets user input and passes to) ---> PROCESS.php (creates query and talks to an SQL database?) ---> Database (returns results to process.php?) ---> New window opens with an embedded inline frame (inline frame contains users results) Is this pretty much what you are trying to do?
Create an account or sign in to comment