[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.3

Done, but with errors on page

Asked by rafique12 in Scripting Languages

I have added a guestbook to my web page and it is working pretty fine now. however, when i hit the submit button the task is performed but my browser (IE) gives  error message:
Done, but with errord on page. Also some of my CSS Class tags get thrown out of position.

Is there a solution or am I being too much of a perfectionist???
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
<?php
 
// Connects to your Database 
mysql_connect("127.0.0.1", "root", "rafiqd") or die(mysql_error()); 
mysql_select_db("guestbook") or die(mysql_error()); 
 
if(isset($_POST['entries']))
{
function escape($var) {
  $val = trim($_REQUEST[$var]);
  if(get_magic_quotes_gpc())
    $val = stripslashes($val);
  $val = htmlentities($val);
  return mysql_real_escape_string($val);
}
 
$name    = escape('name');
$email   = escape('email');
$comment = escape('comment');
$comment = escape('comment');
 
 $query = "INSERT INTO entries (name, 
                                    email, 
                                    comment, 
                                    date) 
             VALUES ('$name', 
                     '$email', 
                     '$comment', 
                     CURDATE())";
 
   mysql_query($query) or die('Error, query failed');
 
   header('Location: ' . $_SERVER['REQUEST_URI']);
   exit;
}
?>
 
<!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=iso-8859-1" />
<title>Party hosting | Members only events | VIP Parties</title>
<link href="../../css/indexcss.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #0000CC;
}
-->
</style>
 
<script type="text/javascript" language="javascript">
function checkForm()
{
   // the variables below are assigned to each
   // form input 
   var gname, gemail, gmessage;
 
   with(window.document.guestform)
   {
      gname    = name;
      gemail   = email;
      gcomment = comment;
   }
 
   // if name is empty alert the visitor
   if(trim(gname.value) == '')
   {
      alert('Please enter your name');
      gname.focus();
      return false;
   }
   // alert the visitor if message is empty
   else if(trim(gcomment.value) == '')
   {
      alert('Please enter your comment');
      gcomment.focus();
      return false;
   }
   else
   {
      // when all input are correct 
      // return true so the form will submit 
      return true;
   }
}
 
/*
Strip whitespace from the beginning and end of a string
*/
function trim(str)
{
   return str.replace(/^\s+|\s+$/g,'');
}
 
/*
   Check if a string is in valid email format. 
*/
function isemail(str)
{
var regex = /^[-_.a-z0-9]+@(([-a-z0-9]+\.)+(ad|ae|aero|af|ag|
ai|al|am|an|ao|aq|ar|arpa|as|at|au|aw|az|ba|bb|bd|be|bf|bg|bh|
bi|biz|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|
ck|cl|cm|cn|co|com|coop|cr|cs|cu|cv|cx|cy|cz|de|dj|dk|dm|do|dz|
ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gh|
gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|
il|in|info|int|io|iq|ir|is|it|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|
kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|mg|mh|mil|mk|
ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|museum|mv|mw|mx|my|mz|na|name|nc|
ne|net|nf|ng|ni|nl|no|np|nr|nt|nu|nz|om|org|pa|pe|pf|pg|ph|pk|
pl|pm|pn|pr|pro|ps|pt|pw|py|qa|re|ro|ru|rw|sa|sb|sc|sd|se|sg|sh|
si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|tc|td|tf|tg|th|tj|tk|tm|
tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|
vu|wf|ws|ye|yt|yu|za|zm|zw)|(([0-9][0-9]?|[0-1][0-9][0-9]|[2]
[0-4][0-9]|[2][5][0-5])\.){3}([0-9][0-9]?|[0-1][0-9][0-9]|[2]
[0-4][0-9]|[2][5][0-5]))$/i;
return regex.test(str);
}
</script>
 
</head>
 
<body>
<div class="container">
<div class="body">
<div class="banner"></div>
 
<div class="advertisement"></div>
 
<div class="time">
<?php 
echo date('l, F dS Y.'); 
?>
</div>
 
<div class="linkbar"><a href="events.php">events</a> | <a href="restaurants.php">restaurants</a> | <a href="hotels.php">hotels</a> | <a href="www.chaffeurfirst.com">car hire</a>  <a href="members.php">guestbook</a> | <a href="home.php">SHHH!</a>
</div>
 
<div class="guestbook"><form method="post" name="guestform">
<table width="250" height="173" border="0" cellpadding="2" cellspacing="1">
<tr> 
<td width="66">Name*</td> 
<td width="203"> 
<input name="name" type="text" size="20" maxlength="30"></td>
</tr>
<tr> 
<td width="66">Email</td>
<td> 
<input name="email" type="text" size="20" maxlength="50"></td>
</tr>
<tr> 
<tr> 
<td width="66">Comment*</td> 
<td> 
<textarea name="comment" cols="16" rows="5"></textarea></td>
</tr>
<tr> 
<td width="66">&nbsp;</td>
<td> 
<input name="entries" type="submit" value="Sign Guestbook" onClick="return checkForm();"></td>
</tr>
</table>
</form>
</div>
 
<div class="bodytext">
<?php
 
// prepare the query string
$query = "SELECT id, 
                 name, 
                 email, 
                 comment, 
                 DATE_FORMAT(date, '%d.%m.%Y') ".
          "FROM entries ".
          "ORDER BY id DESC ";
 
$result = mysql_query($query) or die('Error, query failed: '.mysql_error());
 
// if the guestbook is empty show a message
if(mysql_num_rows($result) == 0)
{
?>
 
<p><br><br>Guestbook is empty </p>
 
<?php 
}
else
{
// get the entries
while($row = mysql_fetch_array($result))
{
// list() is a convenient way of assign a list of variables
// from an array values 
list($id, $name, $email, $comment, $date) = $row;
 
// change all HTML special characters,
// to prevent some nasty code injection
$name    = ($name);
$comment = ($comment);  
$comment = nl2br($comment);
?>
 
<table width="450" border="0" cellpadding="0" cellspacing="0">
<tr> 
<td width="80" align="left"> 
<a href="mailto:<?=$email;?>"> <?=$name;?> </a> </td>
<td align="right"><small><?=$date;?></small></td>
</tr>
<tr> 
<td colspan="2"> <?=$comment;?>
 
<?php
 
if($url != '')
{ 
// make the url clickable by formatting it as HTML link
$url = "<a href='$url' target='_blank'>$url</a>";
}
?>
  
<?php
}
}
?>
</td>
</tr>
</table>
</div>
<div class="guestads"></div>
</div>
</div>
</body>
</html>
Related Solutions: PHP MySQL paging script
[+][-]01/13/09 02:04 PM, ID: 23367803Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Scripting Languages
Sign Up Now!
Solution Provided By: Roads_Roads
Participating Experts: 1
Solution Grade: A
 
[+][-]01/13/09 02:18 PM, ID: 23367924Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20091118-EE-VQP-93 - Hierarchy / EE_QW_3_20080625