View Single Post
ישן 19-11-07, 14:57   # 16
Nils
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Nov 2007
הודעות: 85

Nils לא מחובר  

אווץ'
חסר סגירה כנראה ואני לא הצלחתי לזהות מהי
PHP קוד:
<html dir="rtl">

<head>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
BODY { 
background-image: url('images/maya_08.gif') ;
background-position: 50% 50%;
background-repeat: no-repeat} 
img {border: 0;}
</style>
<title>דף חדש 1</title>
</head>

<body>
<?php
 
include ("config.php");
echo <<<html
<form method="POST" action="add_item.php"> 
<center> 
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="17%" id="AutoNumber1" height="118"> 
<tr>

html; 
  $i = 0; 
  $query = mysql_query("SELECT * FROM item WHERE kat='hand_bags'");  
  while ($row = mysql_fetch_array($query)) 

echo <<<st 

    <td width="100%" height="12" align="center"> 
<img border="0" src="
{$row['pic']}" width="118" height="84"> 
<input type="radio" value="
{$row['value']}" checked name="R1"> 
    </td> 


st;  

if($i % 4 ==  0)
echo "</tr><tr><td><br></td>"; 
$i++;

}
?>
  </tr>
</table>
<p><input type="submit" value="שלח" name="submit"><input type="reset" value="איפוס" name="B2">
</form>
</center>
</body>
</html>
השגיאה:
קוד:
Parse error: syntax error, unexpected $end in /home/yairsh/domains/nodomainfornow.com/public_html/maya/hand_bags.php on line 51
  Reply With Quote