-
-
2. Re: REQUEST FORM
manojb05 May 24, 2012 12:09 AM (in response to BenPleysier)thanks for your reply, i wondering as per my link their is no PHP nothing how can run their code.
Please
-
3. Re: REQUEST FORM
osgood_ May 24, 2012 12:17 AM (in response to manojb05)manojb05 wrote:
thanks for your reply, i wondering as per my link their is no PHP nothing how can run their code.
Please
Hi manoj,
There is nothing different about the form on the page that you supplied than the dozens of other php forms that you have produced before.
The page is sent to itself where the form processing code resides at the begining of the page before the doctype. You never see that as it processes the form serverside before it returns the results to the browser.
-
4. Re: REQUEST FORM
BenPleysier May 24, 2012 12:20 AM (in response to manojb05)To set up a PHP environment, see here http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
Gramps
-
5. Re: REQUEST FORM
BenPleysier May 24, 2012 12:23 AM (in response to BenPleysier)This may also help you http://www.kingluddite.com/tools/how-to-add-a-contact-page-to-send-user-feedback-to-your-e mail-box
Gramps
-
6. Re: REQUEST FORM
manojb05 May 24, 2012 2:22 AM (in response to osgood_)osgood & gramps thaks for valuble feed back. One weeks to i am try to make a the form i am sucess to make coding but ruturn date & departure date calander not come automatically.
My early thread is also talk to same but i dont understand the backend things.
Please help this WEBLINK
Manoj
-
7. Re: REQUEST FORM
osgood_ May 24, 2012 5:01 AM (in response to manojb05)Does breaking the page down (see below) help you to locate the scripts/css required?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="http://www.vistajet.com/Scripts/css/humanity/jquery-ui-1.8.13.custom.css" rel="stylesheet" type="text/css" />
<script src="http://www.vistajet.com/Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="http://www.vistajet.com/Scripts/js/jquery-ui-1.8.10.custom.min.js" type="text/javascript"></script>
<script src="http://www.vistajet.com/Scripts/Shared/master.js" type="text/javascript"></script>
<style>
body
{
font-size: 12px;
background-color: #fff;
}
.ui-timepicker, .ui-datepicker
{
background-color: #CCF; border: 1px solid #369; padding:3px;
}
h3 {
font-size: 20px;
}
</style>
</head>
<body>
<form action="/en/ContactUs/request-quote" method="post">
<h3>Outbound</h3>
<div class="form-row datepicker">
<label for="OutDepartureDate">Date of Departure:</label>
<input id="OutDepartureDate" name="OutDepartureDate" type="text" value="5/24/2012" />
</div>
<h3>Inbound</h3>
<div class="form-row datepicker">
<label for="InDepartureDate">Date of Departure:</label>
<input id="InDepartureDate" name="InDepartureDate" type="text" value="5/24/2012" />
</div>
</form>
</body>
</html>
-
8. Re: REQUEST FORM
manojb05 May 24, 2012 5:55 AM (in response to osgood_)osgood i am incorporate that code in my file some problem in, its not working please check weblink
-
9. Re: REQUEST FORM
osgood_ May 24, 2012 6:14 AM (in response to manojb05)Add the class form-row datepicker like below:
<td colspan="2" >
<div class="form-row datepicker">
<label for="OutDepartureDate"></label>
<input id="OutDepartureDate" name="OutDepartureDate" type="text" value="5/24/2012" />
</div>
</td>
You also need to add a background to the calendar:
.ui-timepicker, .ui-datepicker
{
background-color: #CCF; border: 1px solid #369; padding:3px;
}
Also somehow a space has appeared between .cs and s below (delete that space)
<link href="http://www.vistajet.com/Scripts/css/humanity/jquery-ui-1.8.13.custom.c ss" rel="stylesheet" type="text/css" />
Make sure you actually get the scripts from the site if you want to use them and install them in your own site folder
-
10. Re: REQUEST FORM
manojb05 May 24, 2012 10:26 PM (in response to osgood_)osgood i am really sorry to late message some problem in coding calander section
1) Calander next button not displayed plzzz. WEB LINK
-
11. Re: REQUEST FORM
osgood_ May 24, 2012 11:47 PM (in response to manojb05)Thats because you havent downloaded them:
http://www.vistajet.com/Scripts/css/humanity/images/ui-icons_f08000_256x240.png
http://www.vistajet.com/Scripts/css/humanity/images/ui-icons_ffffff_256x240.png
-