Ask Computer Engineering Expert

In this project, you will create a Web page that allows visitors to your site to sign a guest book that is saved to a database.

1. Create a new document in your text editor and type the


declaration,

element, document head, and

element. Use the strict DTD and "Guest Book" as the
content of the
<br />element.</p> <p style="text-align: justify;">2. Add the following text and elements to the document body:</p> <p style="text-align: justify;"><h2>Enter your name to sign our guest book</h2><br /><form method="POST" action="SignGuestBook.php"><br /><p>First Name <input type="text" name="fi<br />rst_name"<br />/></p><br /><p>Last Name <input type="text" name="last_name"<br />/></p><br /><p><input type="submit" value="Submit" /></p><br /></form></p> <p style="text-align: justify;">3. Save the document as</p> <p style="text-align: justify;">GuestBook.html<br />in the Projects<br />directory for Chapter 8.</p> <p style="text-align: justify;">4. Create a new document in your text editor and type the</p> <p style="text-align: justify;"><!DOCTYPE><br />declaration,<br /><html><br />element, document head, and<br /><body><br />element. Use the strict DTD and "Sign Guest Book" as the content of the<br /><title><br />element.</p> <p style="text-align: justify;">5. Add the following script section to the document body:</p> <p style="text-align: justify;"><?php<br />?></p> <p style="text-align: justify;">6. Add the following statements to the script section to ensure that visitors enter their first and last names:</p> <p style="text-align: justify;">if (empty($_POST['fi<br />rst_name']) || empty($_<br />POST['last_name']))<br />echo "<p>You must enter your fi<br />rst and last<br />name! Click your browser's Back button to<br />return to the Guest Book form.</p>";</p> <p style="text-align: justify;">7. Add the following statement to the script section to connect to the database. Replace Host with the host name of your MySQL server, and<br />User and password with the MySQL user name and password you created in Chapter 7.</p> <p style="text-align: justify;">else {<br />$DBConnect = @mysql_connect("<br />host<br />", "<br />user<br />",<br />"<br />password<br />");<br />if ($DBConnect === FALSE)<br />echo "<p>Unable to connect to the database<br />server.</p>"<br />. "<p>Error code " . mysql_errno()<br />. ": " . mysql_error() . "</p>";</p> <p style="text-align: justify;">8. Add the following statements to the end of the script section to create a database named Guestbook if it does not already exist:</p> <p style="text-align: justify;">else {<br />$DBName = "guestbook";<br />if (!@mysql_select_db($DBName, $DBConnect)) {<br />$SQLstring = "CREATE DATABASE $DBName";<br />$QueryResult = @mysql_query($SQLstring,<br />$DBConnect);<br />if ($QueryResult === FALSE)<br />echo "<p>Unable to execute the<br />query.</p>"<br />. "<p>Error code " . mysql_<br />errno($DBConnect)<br />. ": " . mysql_error($DBConnect)<br />. "</p>";<br /> else<br />echo "<p>You are the first visitor!</p>";<br />}<br />mysql_select_db($DBName, $DBConnect);</p> <p style="text-align: justify;">9. Add the following statements to the end of the script section to create a table named Count if it does not already exist. The table consists of a single auto-incrementing primary key field named countID<br />$TableName = "visitors";<br />$SQLstring = "SHOW TABLES LIKE '$TableName'";<br />$QueryResult = @mysql_query($SQLstring, $DBConnect);<br />if (mysql_num_rows($QueryResult) == 0) {<br />$SQLstring = "CREATE TABLE $TableName<br />(countID SMALLINT<br />NOT NULL AUTO_INCREMENT PRIMARY KEY,<br />last_name VARCHAR(40), fi<br />rst_name VARCHAR(40))";<br />$QueryResult = @mysql_query($SQLstring,<br />$DBConnect);<br />if ($QueryResult<br />===<br />FALSE)<br />echo "<p>Unable to create the table.</p>"<br />. "<p>Error code " . mysql_<br />errno($DBConnect)<br />. ": " . mysql_error($DBConnect) .<br />"</p>";<br /> else<br />echo "<p>You are the first visitor!</p>";<br />}<br />mysql_select_db($DBName, $DBConnect);</p> <p style="text-align: justify;">10. Add the following statements to the end of the script section to create a table named Count if it does not already exist. The table consists of a single auto-incrementing primary key field named counted .</p> <p style="text-align: justify;">$TableName = "visitors";<br />$SQLstring = "SHOW TABLES LIKE '$TableName'";<br />$QueryResult = @mysql_query($SQLstring, $DBConnect);<br />if (mysql_num_rows($QueryResult) == 0) {<br />$SQLstring = "CREATE TABLE $TableName<br />(countID SMALLINT<br />NOT NULL AUTO_INCREMENT PRIMARY KEY,<br />last_name VARCHAR(40), fi<br />rst_name VARCHAR(40))";<br />$QueryResult = @mysql_query($SQLstring,<br />$DBConnect);<br />if ($QueryResult<br />===<br />FALSE)<br />echo "<p>Unable to create the table.</p>"<br />. "<p>Error code " . mysql_<br />errno($DBConnect)<br />. ": " . mysql_error($DBConnect) .<br />"</p>";</p> <p style="text-align: justify;">11. Finally, add the following statements to the end of the script section. These mysql_query() statements add the visitor to the database. The last statement closes the database connection.</p> <p style="text-align: justify;">$LastName = stripslashes($_<br />POST['last_name']);<br />$FirstName = stripslashes($_<br />POST['fi<br />rst_name']);<br />$SQLstring = "INSERT INTO $TableName<br />VALUES(NULL, '$LastName',<br />'$FirstName')";<br />$QueryResult = @mysql_<br />query($SQLstring, $DBConnect);<br />if ($QueryResult === FALSE)<br />echo "<p>Unable to execute the query.</p>"<br />. "<p>Error code " . mysql_<br />errno($DBConnect)<br />. ": " . mysql_<br />error($DBConnect) . "</p>";<br />else<br />echo "<h1>Thank you for signing our guest book!</h1>";<br />}<br />mysql_close($DBConnect);<br />}<br />}</p> <p style="text-align: justify;">12. Save the document as SignGuestBook.php in the Projects directory for Chapter 8. Upload both SignGuestBook.php and GuestBook.html to the server.</p> <p style="text-align: justify;">13. Open GuestBook.html in your Web browser by entering the following URL:<br />http://<yourserver>/PHP_Projects/<br />Chapter.08/Projects/GuestBook.html<br />Test the form to see if you can add your name to the database.</p> <p style="text-align: justify;">14. Close your Web browser window.</p> <p style="text-align: justify;">Create a Web page to be used for storing software development bug reports in a MySQL database. Include fields such as product name and version, type of hardware, operating system, frequency of occurrence, and proposed solutions. Include links on the main page that allow you to create a new bug report and update an existing bug<br />report.</p></span> </div></div></div> <div id="viewreadmore" class="que_link"> <a id="readmore" href="javascript:void(0);" style="font-size: 14px; color: #ff700c;" class="read-more-trigger mar_top10" onclick="changeheight(this)">View complete question</a> </div> <div class="innercanteenouter_inner_center3"> <p>Computer Engineering, <span>Engineering</span> </p> </div> <div class="clear"></div> </div> </div> <div class="innercanteenouter_inner_center6"> <div class="innercanteenouter_inner_center6_center7"> <div class="innercanteenouter_inner_center6_center"> <ul> <li class="innercanteenouter1"> Category:- <span>Computer Engineering</span> </li> <li class="innercanteenouter2"> Reference No.:- <span>M92024864 </span> </li> <li id="lrprice" class="innercanteenouter3"> Price:- <span>$40</span> </li> </ul> <div id="verified" class="innercanteenouter_inner_center6_center1"> <a>Verified Expert</a> </div> <div class="clear"></div> <input type="submit" name="btnASolution" value="Download Verified Solution File" id="btnASolution" class="innercanteenouter_inner_center6_center2" /> <p id="compare">Priced at <label class="priceold">$80</label> Now at $40, Verified Solution</p> </div> <div class="innerjohnanswered1"> <div class="innerjohnanswered1ftti"><h2></h2> <p></p> </div> <div class="clear"></div> </div> </div> </div> <div class="inneranswer"> <b>Have any Question?</b><span id="RequiredFieldValidator1" style="background-color:Yellow;visibility:hidden;">Write your Review or question?</span> <br /><br /> <div class="inneranswerhgrows"> <textarea name="txtReview" id="txtReview" class="inneranswerhgrowss" ValidationGroup="Review" placeholder=" Write your message!!"></textarea> </div> <div class="inneranswerhgrowsddf"> <input type="submit" name="btnReview" value="Have Question" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("btnReview", "", true, "Review", "", false, false))" id="btnReview" class="planpageinnerrightcontleftcommetgetquotebt" /> </div> </div> <br /> <div class="innerquestions"> <h2>Related Questions in Computer Engineering</h2> <table id="dlReviewList" cellspacing="0" style="width:100%;border-collapse:collapse;"> <tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_0"><b><a href='http://www.mywordsolution.com/question/does-bmw-have-a-guided-missile-corporate-culture-and/93107955' target='_balnk' class='que_link' >Does bmw have a guided missile corporate culture and</a></b></span></h3> <p> <span id="dlReviewList_lblContent_0">Does BMW have a guided missile corporate culture, and incubator corporate culture, a family corporate culture, or an Eiffel tower corporate culture?</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_1"><b><a href='http://www.mywordsolution.com/question/rebecca-borrows-10000-at-18-compounded-annually-she-pays/93107957' target='_balnk' class='que_link' >Rebecca borrows 10000 at 18 compounded annually she pays</a></b></span></h3> <p> <span id="dlReviewList_lblContent_1">Rebecca borrows $10,000 at 18% compounded annually. She pays off the loan over a 5-year period with annual payments, starting at year 1. Each successive payment is $700 greater than the previous payment. (a) How much was ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_2"><b><a href='http://www.mywordsolution.com/question/jeff-decides-to-start-saving-some-money-from-this-upcoming/93107959' target='_balnk' class='que_link' >Jeff decides to start saving some money from this upcoming</a></b></span></h3> <p> <span id="dlReviewList_lblContent_2">Jeff decides to start saving some money from this upcoming month onwards. He decides to save only $500 at first, but each month he will increase the amount invested by $100. He will do it for 60 months (including the fir ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_3"><b><a href='http://www.mywordsolution.com/question/suppose-you-make-30-annual-investments-in-a-fund-that-pays/93107961' target='_balnk' class='que_link' >Suppose you make 30 annual investments in a fund that pays</a></b></span></h3> <p> <span id="dlReviewList_lblContent_3">Suppose you make 30 annual investments in a fund that pays 6% compounded annually. If your first deposit is $7,500 and each successive deposit is 6% greater than the preceding deposit, how much will be in the fund immedi ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_4"><b><a href='http://www.mywordsolution.com/question/question--under-what-circumstances-is-it-ethical-if-ever-to/93107963' target='_balnk' class='que_link' >Question -under what circumstances is it ethical if ever to</a></b></span></h3> <p> <span id="dlReviewList_lblContent_4">Question :- Under what circumstances is it ethical, if ever, to use consumer information in marketing research? Explain why you consider it ethical or unethical.</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_5"><b><a href='http://www.mywordsolution.com/question/what-are-the-differences-between-four-types-of-economics/93107964' target='_balnk' class='que_link' >What are the differences between four types of economics</a></b></span></h3> <p> <span id="dlReviewList_lblContent_5">What are the differences between four types of economics evaluations and their differences with other two (budget impact analysis (BIA) and cost of illness (COI) studies)?</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_6"><b><a href='http://www.mywordsolution.com/question/what-type-of-economic-system-does-norway-have-explain-some/93107967' target='_balnk' class='que_link' >What type of economic system does norway have explain some</a></b></span></h3> <p> <span id="dlReviewList_lblContent_6">What type of economic system does Norway have? Explain some of the benefits of this system to the country and some of the drawbacks,</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_7"><b><a href='http://www.mywordsolution.com/question/among-the-who-imf-and-wto-which-of-these-governmental/93107969' target='_balnk' class='que_link' >Among the who imf and wto which of these governmental</a></b></span></h3> <p> <span id="dlReviewList_lblContent_7">Among the WHO, IMF, and WTO, which of these governmental institutions do you feel has most profoundly shaped healthcare outcomes in low-income countries and why? Please support your reasons with examples and research/doc ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_8"><b><a href='http://www.mywordsolution.com/question/a-real-estate-developer-will-build-two-different-types-of/93108379' target='_balnk' class='que_link' >A real estate developer will build two different types of</a></b></span></h3> <p> <span id="dlReviewList_lblContent_8">A real estate developer will build two different types of apartments in a residential area: one- bedroom apartments and two-bedroom apartments. In addition, the developer will build either a swimming pool or a tennis cou ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_9"><b><a href='http://www.mywordsolution.com/question/question-what-some-of-the-reasons-that-evolutionary-models/93108381' target='_balnk' class='que_link' >Question what some of the reasons that evolutionary models</a></b></span></h3> <p> <span id="dlReviewList_lblContent_9">Question : What some of the reasons that evolutionary models are considered by many to be the best approach to software development. The response must be typed, single spaced, must be in times new roman font (size 12) an ...</span> </p> </div> </td> </tr><tr> <td></td> </tr> </table> </div> <div class="innerlogo"> <ul> <li><div class="innerlogoback1"></div></li> <li><div class="innerlogoback2"></div></li> <li><div class="innerlogoback3"></div></li> </ul> </div> </div> <div class="innercanteenouter_inner_right"> <div class="innercanteenouter_inner_right1"> <div class="innercanteenouter_inner_right1pou"> <ul> <li class="red1"> <div class="counterDivTag">4,153,160 Questions Asked</div> </li> <li class="oring1"><div class="counterDivTag">13,132 Experts</div></li> <li class="grine1"><div class="counterDivTag">2,558,936 Questions Answered</div></li> </ul> <div class="clear"></div> <h2>Ask Experts for help!!</h2> </div> </div> <div class="innerchoose"> <h2>Looking for Assignment Help?</h2> <p> <b>Start excelling in your Courses, Get help with Assignment</b><br /><br /> Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time. </p> <a href="http://www.mywordsolution.com/free-quote-job-posting.aspx">Ask Now</a> <span>Help with Problems, Get a Best Answer</span> </div> <div class="innertranspoitation"> <div class="innertranspoitation1"> <ul> <li><a href="#">Recent Questions </a></li> </ul> <div class="clear"></div> </div> <table id="LeftSideControl1_RecentQuestion1_dlReviewList" cellspacing="0" style="width:100%;border-collapse:collapse;"> <tr> <td> <div class="innertranspoitation2"> <h3><span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblTitle_0"><b><a href='http://www.mywordsolution.com/question/why-might-a-bank-avoid-the-use-of-interest-rate-swaps-even/93137978' target='_balnk' class='que_link' >Why might a bank avoid the use of interest rate swaps even</a></b></span></h3> <p> <span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblContent_0">Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate</span> </p> </div> </td> </tr><tr> <td> <div class="innertranspoitation2"> <h3><span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblTitle_1"><b><a href='http://www.mywordsolution.com/question/describe-the-difference-between-zero-coupon-bonds-and/93137977' target='_balnk' class='que_link' >Describe the difference between zero coupon bonds and</a></b></span></h3> <p> <span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblContent_1">Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p</span> </p> </div> </td> </tr><tr> <td> <div class="innertranspoitation2"> <h3><span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblTitle_2"><b><a href='http://www.mywordsolution.com/question/compute-the-present-value-of-an-annuity-of--880-per-year/93137976' target='_balnk' class='que_link' >Compute the present value of an annuity of 880 per year</a></b></span></h3> <p> <span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblContent_2">Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As</span> </p> </div> </td> </tr><tr> <td> <div class="innertranspoitation2"> <h3><span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblTitle_3"><b><a href='http://www.mywordsolution.com/question/compute-the-present-value-of-an-1150-payment-made-in-ten/93137975' target='_balnk' class='que_link' >Compute the present value of an 1150 payment made in ten</a></b></span></h3> <p> <span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblContent_3">Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int</span> </p> </div> </td> </tr><tr> <td> <div class="innertranspoitation2"> <h3><span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblTitle_4"><b><a href='http://www.mywordsolution.com/question/compute-the-present-value-of-an-annuity-of--699-per-year/93137974' target='_balnk' class='que_link' >Compute the present value of an annuity of 699 per year</a></b></span></h3> <p> <span id="LeftSideControl1_RecentQuestion1_dlReviewList_lblContent_4">Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As</span> </p> </div> </td> </tr><tr> <td></td> </tr> </table> </div> </div> <div class="clear"></div> </div> <div class="clear"></div> </div> </div> <div class="footer"> <div class="footerouter"> <div class="footerouter_inner"> <div class="footerouter_left"> <ul> <li> <div class="footerouter_left1"> <ul> <li><a href="http://www.mywordsolution.com/homework-help/science/8">Science</a></li> <li><a href="http://www.mywordsolution.com/homework-help/english/390">English</a></li> <li><a href="http://www.mywordsolution.com/homework-help/biology/384">Biology</a></li> <li><a href="http://www.mywordsolution.com/homework-help/humanities/388">Humanities</a></li> </ul> </div> </li> <li> <div class="footerouter_left1"> <ul> <li><a href="http://www.mywordsolution.com/homework-help/engineering/9">Engineering</a></li> <li><a href="http://www.mywordsolution.com/homework-help/programming/10">Programming</a></li> <li><a href="http://www.mywordsolution.com/homework-help/computer-science/11">Computers/IT Courses</a></li> </ul> </div> </li> <li> <div class="footerouter_left1"> <ul> <li><a href="http://www.mywordsolution.com/homework-help/accounting/1">Accounting</a></li> <li><a href="http://www.mywordsolution.com/homework-help/finance/2">Finance</a></li> <li><a href="http://www.mywordsolution.com/homework-help/management/7">Management</a></li> <li><a href="http://www.mywordsolution.com/homework-help/statistics/6">Statistics</a></li> <li><a href="http://www.mywordsolution.com/homework-help/economics/5">Economics</a></li> <li><a href="http://www.mywordsolution.com/homework-help/taxation/4">Taxation</a></li> <li><a href="http://www.mywordsolution.com/homework-help/law/3">LAW Assignment Help</a></li> </ul> </div> </li> <li> <div class="footerouter_left1"> <ul> <li><a href="http://www.mywordsolution.com/homework-help/essay/13">Essay Writing Help</a></li> <li><a href="http://www.mywordsolution.com/homework-help/dissertation/12">Dissertation Help</a></li> <li><a href="http://www.mywordsolution.com/homework-help/thesis-writing/117">Thesis Help</a></li> <li><a href="http://www.mywordsolution.com/homework-help/literature-review/79">Literature Review</a></li> <li><a href="http://www.mywordsolution.com/homework-help/research-paper/78">Research Paper</a></li> <li><a href="http://www.mywordsolution.com/homework-help/solved-classroom-assignments/77">Solved Problems</a></li> <li><a href="http://www.mywordsolution.com/homework-help/popular-courses-and-coursework-help/82 ">Coursework Help</a></li> </ul> </div> </li> <div class="clear"></div> </li> </ul> </div> <div class="footerouter_right"> <div class="footerouter_right0"> <div class="footerpayment"> <div class="footerpaymentscur"></div> <div class="footerpaymentscard"> <ul> <li class="footerpaymentscard1"></li> <li class="footerpaymentscard2"></li> <li class="footerpaymentscard3"></li> <li class="footerpaymentscard4"></li> </ul> </div> </div> <div class="footerouter_right1"> <h2>Follow Us</h2> <ul> <li class="fb"><a href="http://www.facebook.com/Mywordsolution" rel="nofollow" target="_blank"></a></li> <li class="twt"><a href="http://www.twitter.com/Mywordsolution" rel="nofollow" target="_blank"></a></li> </ul> <div class="clear"></div> </div> </div> </div> <div class="clear"></div> </div> </div> <div class="footerbottom"> <div class="footerbottom_inner"> <ul> <li><a href="http://www.mywordsolution.com/">Home</a></li> <li><a href="http://www.mywordsolution.com/about-us.aspx">About Us</a></li> <li><a href="http://www.mywordsolution.com/blog/">Blog</a></li> <li><a href="http://www.mywordsolution.com/faqs.aspx">FAQs</a></li> <li><a href="http://www.mywordsolution.com/ask-question.aspx">Assignment Help</a></li> <li><a href="http://www.mywordsolution.com/homework-help.aspx">Homework Help</a></li> <li><a href="http://www.mywordsolution.com/contactus.aspx">Contact Us</a></li> <li><a href="http://www.mywordsolution.com/questions/archive/">Q&A</a></li> <li><a href="http://www.mywordsolution.com/directory.aspx">Directory</a></li> <li><a href="http://www.mywordsolution.com/sitemap.aspx">Sitemap</a></li> <li><a href="http://www.mywordsolution.com/refund-policy.aspx">Refund Policy</a></li> <li><a href="http://www.mywordsolution.com/privacy-policy.aspx">Privacy Policy</a></li> <li><a href="http://www.mywordsolution.com/terms-and-conditions.aspx">T & C </a></li> <li><a href="http://www.mywordsolution.com/disclaimer-policy.aspx">Disclaimer Policy</a></li> <li> <a href="http://www.mywordsolution.com/copyright-notice.aspx">Copyright Notice</a></li> </ul> <div class="clear"></div> <p>© Copyright 2013-14 <span>mywordsolution.com</span> All rights reserved </p> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-38762144-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.mywordsolution.com/library/js/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <!--Start of Tawk.to Script--> <script type="text/javascript"> var $_Tawk_API={},$_Tawk_LoadStart=new Date(); (function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src='https://embed.tawk.to/5584638c0ed4869955a0dce2/default'; s1.charset='UTF-8'; s1.setAttribute('crossorigin','*'); s0.parentNode.insertBefore(s1,s0); })(); </script> <!--End of Tawk.to Script--> </div> </div> </div> <script type="text/javascript"> //<![CDATA[ var Page_Validators = new Array(document.getElementById("RequiredFieldValidator1")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var RequiredFieldValidator1 = document.all ? document.all["RequiredFieldValidator1"] : document.getElementById("RequiredFieldValidator1"); RequiredFieldValidator1.controltovalidate = "txtReview"; RequiredFieldValidator1.errormessage = "Write your Review or question?"; RequiredFieldValidator1.validationGroup = "Review"; RequiredFieldValidator1.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; RequiredFieldValidator1.initialvalue = ""; //]]> </script> <script type="text/javascript"> //<![CDATA[ var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } //]]> </script> </form> </body> </html> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>