Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

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/question-can-someone-send-me-a-complete-produce-a-project/93122246' target='_balnk' class='que_link' >Question can someone send me a complete produce a project</a></b></span></h3> <p> <span id="dlReviewList_lblContent_0">Question : Can someone send me a complete produce a project plan which results in the development of a major software product to solve a customer problem, for a Course Registration System.</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_1"><b><a href='http://www.mywordsolution.com/question/suppose-there-is-exactly-one-packet-switch-between-a/93127274' target='_balnk' class='que_link' >Suppose there is exactly one packet switch between a</a></b></span></h3> <p> <span id="dlReviewList_lblContent_1">Suppose there is exactly one packet switch between a sending host and a receiving host. The transmission rates between the sending host and the switch and between the switch and receiving host are R1 and R2 respectively. ...</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/93109269' 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/quesiton-your-final-research-paper-assignment-is-to-write-a/93126833' target='_balnk' class='que_link' >Quesiton your final research paper assignment is to write a</a></b></span></h3> <p> <span id="dlReviewList_lblContent_3">Quesiton: Your final research paper assignment is to write a research paper that explains how defense-in-depth (chapter 6) and awareness (chapter 10) are complimentary techniques to detect emerging threats and strengthen ...</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-suppose-you-are-considering-an-improvement-to-a/93127208' target='_balnk' class='que_link' >Question suppose you are considering an improvement to a</a></b></span></h3> <p> <span id="dlReviewList_lblContent_4">Question : Suppose you are considering an improvement to a computer program. The improvement is applicable only to a fraction 35% of the program and the speedup of the improved fraction is 15. What is the overall speedup ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_5"><b><a href='http://www.mywordsolution.com/question/as-noted-in-chapter-14-of-aampa-distribution-of-income/93113656' target='_balnk' class='que_link' >As noted in chapter 14 of aampa distribution of income</a></b></span></h3> <p> <span id="dlReviewList_lblContent_5">As noted in Chapter 14 of A&A, distribution of income among various population groups followed roughly the same patterns in the USA, Sweden, and the former Soviet Union, despite the very different forms of economic organ ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_6"><b><a href='http://www.mywordsolution.com/question/solution-must-be-recursive-you-are-not-allowed-to-use-loops/93120622' target='_balnk' class='que_link' >Solution must be recursive you are not allowed to use loops</a></b></span></h3> <p> <span id="dlReviewList_lblContent_6">Solution must be recursive. You are not allowed to use loops, or use the Python "in" operator. PYTHON Write a function called first. It is passed a parameter x, that may or may not be a list; if is x is a list it may con ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_7"><b><a href='http://www.mywordsolution.com/question/innbspmid-2009-rite-aid-hadnbspccc-ratednbsp20-year-bonds/93109709' target='_balnk' class='que_link' >Innbspmid-2009 rite aid hadnbspccc-ratednbsp20-year bonds</a></b></span></h3> <p> <span id="dlReviewList_lblContent_7">In? mid-2009, Rite Aid had? CCC-rated, 20-year bonds outstanding with a yield to maturity of 17.3%. At the? time, similar maturity Treasuries had a yield of 5%. Suppose the market risk premium is 4% and you believe Rite? ...</span> </p> </div> </td> </tr><tr> <td> <div class="innerquestionsgtr"> <h3> <span id="dlReviewList_lblTitle_8"><b><a href='http://www.mywordsolution.com/question/you-own-a-specialty-company-self-made-company-smc-which/93123294' target='_balnk' class='que_link' >You own a specialty company self made company smc which</a></b></span></h3> <p> <span id="dlReviewList_lblContent_8">You own a specialty company; self made company (SMC) which sells hats and jackets. You obtained an object IDENTIFIER 5000 under enterprises node from IANA. You have two branch locations. Each has an inventory system that ...</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-recall-the-on-the-spot-courier-service-introduced/93108527' target='_balnk' class='que_link' >Question recall the on the spot courier service introduced</a></b></span></h3> <p> <span id="dlReviewList_lblContent_9">Question : Recall the On the Spot courier service introduced in Unit 1. The details of the package pickup and delivery process are described here. When Bill got an order, at first, only on his phone, he recorded when he ...</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>