[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!

7.6

I am recieving this error message: Warning: Cannot modify header information - headers already sent by (output started at C:\Inetpub\wwwroot\www\strictly-invite\html\website\members.php:7) in C:\Inetp

Asked by rafique12 in PHP Scripting Language

I am implementing a guestbook on a web page and recieve the error message when I execute the script
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:
<?php
session_start();  
// Connects to your Database 
mysql_connect("127.0.0.1", "root", "rafiqd") or die(mysql_error()); 
mysql_select_db("guestbook") or die(mysql_error())?>
 
<?php
if(isset($_POST['entries']))
{
   $name    = trim($_POST['name']);
   $email   = trim($_POST['email']);
   $comment = trim($_POST['comment']);
 
   if(!get_magic_quotes_gpc())
   {
      $comment = addslashes($comment);
   }
 
 
   // if the visitor do not enter the url
   // set $url to an empty string
   if ($url == 'http://')
   {
      $url = '';
   }
 
   $query = "INSERT INTO entries (name, 
                                    email, 
                                    comment, 
                                    date) 
             VALUES ('$name', 
                     '$email', 
                     '$comment', 
                     current_date)";
 
   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" />
<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"></div>
 
<div class="links"><form method="post" name="guestform">
<table width="268" border="0" cellpadding="2" cellspacing="1">
<tr> 
<td width="74">Name *</td> 
<td width="183"> 
<input name="name" type="text" size="30" maxlength="30"></td>
</tr>
<tr> 
<td width="74">Email</td>
<td> 
<input name="email" type="text" size="30" maxlength="50"></td>
</tr>
<tr> 
<tr> 
<td width="74">Comment *</td> 
<td> 
<textarea name="comment" cols="27" rows="5"></textarea></td>
</tr>
<tr> 
<td width="74">&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(entry_date, '%d.%m.%Y') ".
          "FROM entries ".
          "ORDER BY id DESC ";
 
$result = mysql_query($query) or die('Error, query failed');
 
// 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    = htmlspecialchars($name);
$comment = htmlspecialchars($comment); 
 
 
$comment = nl2br($comment);
?>
 
<table width="550" border="1" cellpadding="2" 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>";
}
?>
 
<br> <small>Homepage : <?=$url;?></small> 
 
<?php
}
}
?>
</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>
[+][-]01/13/09 05:35 AM, ID: 23362342Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

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

 
[+][-]01/13/09 05:39 AM, ID: 23362373Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

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

 
[+][-]01/13/09 05:44 AM, ID: 23362420Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

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

 
[+][-]01/13/09 05:45 AM, ID: 23362425Accepted 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: PHP Scripting Language
Sign Up Now!
Solution Provided By: Phatzer
Participating Experts: 1
Solution Grade: A
 
 
Loading Advertisement...
20091111-EE-VQP-89 - Hierarchy / EE_QW_3_20080625