|
|
|
รบกวนช่วยดูโค๊ดหน่อยค่ะ ค้นหาค่ะ...Parse error: syntax error, unexpected $end in |
|
|
|
|
|
|
|
ไม่มี } ปิดครับ
|
|
|
|
|
Date :
2009-04-28 21:33:02 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณค่ะ
|
|
|
|
|
Date :
2009-04-28 21:40:29 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo $strSQL ออกมาดูครับ มันผิดที่ บรรทัดนั้น ผลลัพธ์ออกมายังไง เอาไป query ใน phpmyadmin แล้วจะรู้ว่ามันผิดตรงไหน
|
|
|
|
|
Date :
2009-04-28 21:52:17 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$num = mysql_num_rows($dbquery);
for($i=1; $i<=$num; $i++){
$row = mysql_fetch_array($dbquery);
?>
ลองทำแบบนี้ดูครับ อย่าลืม <?PHP } ?> ปิด tr ด้วยครับ
|
|
|
|
|
Date :
2009-04-28 21:53:52 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำแล้วค่ะแต่มันกดค้นหาแล้วก็ยังติดค่ะ
Code (PHP)
<?php
while($result = mysql_fetch_array($dbquery))?>
<?php
ตรงนี้ค่ะ
|
|
|
|
|
Date :
2009-04-28 22:02:01 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$dbquery = mysql_db_query($dbname,$sql)
จากด้านบนเปลี่ยน $sql เป็น $strSQL ดูน่ะครับ ผมว่าตัวแปรผิดป่ะครับ
|
|
|
|
|
Date :
2009-04-28 22:08:52 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
session_start();
?>
<html>
<head>
<title></title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" name="Submit" value="ค้นหา">
</tr>
</table>
</form>
<? include("connect.php"); ?>
<?
if($_GET["txtKeyword"] != "")
{
// Search By Name or Email
$sql = "SELECT * FROM course WHERE (name'%".$_GET["txtKeyword"] ."%')";
$dbquery = mysql_db_query($dbname,$sql)
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">????????????</div></th>
<th width="98"> <div align="center">????????????</div></th>
<th width="198"> <div align="center">??????????</div></th>
</tr>
<?php
while($result = mysql_fetch_array($dbquery))?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr>
</table>
</body>
</html>
<?
}
?>
อันนี้อันที่ลองแก้ดูแล้วค่ะ
|
|
|
|
|
Date :
2009-04-28 22:15:34 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กำทำไมไม่เอา <? } ?>ไว้ล้าง </html> ละครับ เอาไว้ล้าง </tr> ตรงนี้ครับ
ลองแก้ตรงนี้ด้วยครับ
Code (PHP)
<?php
while($result = mysql_fetch_array($dbquery)) { ?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr>
<? } ?>
ถ้า error เอาส่วนที่ฟ้องมาด้วยน่ะครับ
|
|
|
|
|
Date :
2009-04-28 22:20:00 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จากตรงนี้
Code (PHP)
<?php
while($result = mysql_fetch_array($dbquery))?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr>
ให้เป้นแบบนี้ดูครับ
Code (PHP)
<?php
$num = mysql_num_rows($dbquery);
for($i=1; $i<=$num; $i++){
$row = mysql_fetch_array($dbquery);
?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr><? } ?>
อย่าลืมเปรียนตัวแปรน่ะครับ
|
|
|
|
|
Date :
2009-04-28 22:29:55 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าเพิ่งเบื่อกันะค่ะ (อ้อนวอน)
คราวนี้มันขึ้นมาแบบนี้แล้วค่ะ
Parse error: syntax error, unexpected '}' in C:\AppServ\www\phpweb\admin\Sample1.php on line 50
|
|
|
|
|
Date :
2009-04-28 22:38:46 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาโค๊ดล่าสุดมาโพสต์ครับ
|
|
|
|
|
Date :
2009-04-28 22:41:48 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ค่ะ
Code (PHP)
<?
session_start();
?>
<html>
<head>
<title></title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" name="Submit" value="ค้นหา">
</tr>
</table>
</form>
<? include("connect.php"); ?>
<?
if($_GET["txtKeyword"] != "")
{
// Search By Name or Email
$sql= "SELECT * FROM course WHERE name LIKE '%".$_GET["txtKeyword"] ."%'";
$dbquery = mysql_db_query($dbname,$sql)
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">????????????</div></th>
<th width="98"> <div align="center">????????????</div></th>
<th width="198"> <div align="center">??????????</div></th>
</tr>
$num_rows=mysql_num_rows($dbquery);
for($i=1; $i<=$num_rows; $i++){
$row = mysql_fetch_array($dbquery);
?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr><? } ?>
</table>
</body>
<? } ?>
</html>
|
|
|
|
|
Date :
2009-04-28 22:44:24 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">????????????</div></th>
<th width="98"> <div align="center">????????????</div></th>
<th width="198"> <div align="center">??????????</div></th>
</tr>
<?
$num_rows=mysql_num_rows($dbquery);
for($i=1; $i<=$num_rows; $i++){
$row = mysql_fetch_array($dbquery);
?>
|
|
|
|
|
Date :
2009-04-28 22:46:45 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ฟ้องแล้วค่ะ แต่ไม่รู้ทำไมพอกดค้นหาแล้วมันไม่ขึ้นอะไรเลยค่ะ
|
|
|
|
|
Date :
2009-04-28 22:50:59 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ขึ้นอ่ะค่ะ T_T
|
|
|
|
|
Date :
2009-04-28 23:06:09 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
if($_GET["txtKeyword"] != "")
{
// Search By Name or Email
$sql= "SELECT * FROM course WHERE name LIKE '%".$_GET["txtKeyword"] ."%'";
$dbquery = mysql_db_query($dbname,$sql)
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">????????????</div></th>
<th width="98"> <div align="center">????????????</div></th>
<th width="198"> <div align="center">??????????</div></th>
</tr>
<?
$num_rows=mysql_num_rows($dbquery);
for($i=1; $i<=$num_rows; $i++){
$result= mysql_fetch_array($dbquery);
?>
<tr>
<td><div align="center"><?=$result["id_course"];?></div></td>
<td><?=$result["name"];?></td>
<td><?=$result["detial"];?></td>
</tr><? } ?>
</table>
</body>
</html>
ลองดูครับ
|
|
|
|
|
Date :
2009-04-28 23:13:16 |
By :
kanchen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สีแดงมันต่างกันเห็นใหม่ครับ แก้หรือยัง รับมาใส่ $row แต่ไปดึงข้อมูลจาก $result
อย่าให้ผมเขียนให้เลยนะ แค่นี้ก็พอจะแก้เองได้ ใช่ไหม
|
|
|
|
|
Date :
2009-04-28 23:14:26 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ ขอบคุณมาก ๆ เลยค่ะ
ขอบคุณที่เสียเวลานะค่ะ
คุณKanJi
และก็คุณ
PlaKriM ด้วย
แล้วจะรบกวนอีกนะค่ะ แหะ ๆ
|
|
|
|
|
Date :
2009-04-28 23:18:03 |
By :
nina |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังงงได้อีก อิอิ
|
|
|
|
|
Date :
2009-04-29 13:18:36 |
By :
teez1232002 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?session_start();
if ($sess_adminid<>session_id()){
header ("Location: admin.php"); exit();
}
$id_edit=$_GET[id_edit];
include "connect.php";
$sql="select * from tb_product where id_prd='$id_edit' ";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$id_prd=$rs[id_prd];
$code=sprintf("%05d",$id_prd);
$name_prd=$rs[name_prd];
$detail_prd=$rs[detail_prd];
$ref_id_type=$rs[ref_id_type];
$price_prd=$rs[price_prd];
$photo_prd=$rs[photo_prd];
?>
<!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=tis-620" />
<title>ClickStarFashion.com</title>
<link href="stylesheets/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="containertop" ></div>
<!-- Header -->
<h1>ClickStarFashion</h1>
<hr />
<!-- Main Image -->
<div id="main_image">
<IMG SRC="images/big .gif" WIDTH="850" HEIGHT="150" BORDER="0" ALT="">
<div id="frame_image_top"></div><div id="frame_image_bottom"></div>
<hr />
</div>
<div id="navigation_wrapper">
<!-- Top Navigation -->
<ul id="navigation">
<li><a href="admin_order.php">????????????????</a></li>
<li><a href="admin_product_add.php">???????????</a></li>
<li><a href="admin_product.php">??????</a></li>
<li><a href="admin_type.php">?????????????????</a></li>
<li><a href="admin_logout.php">??????????</a></li>
</ul>
</div>
<form action="admin_product_edit2.php" method="post" enctype="multipart/form-data">
<p><b>???????????</b></p>
<table width="400" border="0" cellspacing="1"cellpadding="0">
<tr>
<td>??????????</td>
<td><?=$code?></td>
</tr>
<tr>
<td width="101"> ??????????</td>
<td><input type="text" name="name" size="40" value="<?=$name_prd?>">*</td>
</tr>
<td>????????????</td>
<td>
<select name="ref_id_type">
<?
$sql="select * from tb_type";
$result=mysql_db_query($dbname,$sql);
while($rs=mysql_fetch_array($result)) {
$id_type=$rs[id_type];
$name_type=$rs[name_type];
if ($ref_id_type==$id_type){
echo "<option value='$id_type' selected> $name_type</option>";
} else {
echo "<option value='$id_type' > $name_type</option>";
?>
</select></td>
</tr>
<tr>
<td>??????????</td>
<td><textarea name="detail" cols="40" rows="4"><?=$detail_prd?></textarea> * </td>
</tr>
<tr>
<td>????</td>
<td><input type="text" name="price" size="10" value="<?=$price_prd?>"> ??? *</td>
</tr>
<tr>
<td>??????</td>
<td>
<?
if ($photo_prd<>""){
echo "<input type='checkbox' name='chkdel' value='1'> ????????<br>";
echo "<a href='photo/$photo_prd' target='_blank'>??????????</a>";
} else {
echo "<input type='file' name='fileupload' >";
echo "<input type='hidden' name='max_file_size' value='100000'>";
}
?>
</td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" name="Submit" value="????">
<input type="submit" name="Submit" value="??????">
<input name="id_edit" type="hidden" value="<?=$id_edit?>">
<input name="photo_del" type="hidden" value="<?=$photo_prd?>">
</td>
</tr>
</table>
</form>
<hr />
</div>
</div>
<!-- Footer -->
<div id="footer_wrapper">
<div id="footer">
<div class="logo"><a href="http://www.Clickstarfashion.com" title="Clickstarfashion.com">Eco web design by Clickstarfashion</a><span></span></div>
<ul>
<li><a href="admin_order.php">????????????????</a></li>
<li><a href="admin_product_add.php">???????????</a></li>
<li><a href="admin_product.php">??????</a></li>
<li><a href="admin_type.php">?????????????????</a></li>
<li><a href="admin_logout.php">??????????</a></li>
</ul>
</div>
</div>
</body>
</html>
ช่วยแก้ให้หน่อยค่ะมันติดบรรทัดสุดท้ายค่ะไม่รู้ผิดตรงไหน
|
|
|
|
|
Date :
2009-06-02 11:18:24 |
By :
dd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
function httext($text,$search) {};?>
<!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=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
.style2 {color: #0000FF}
.style3 {color: #CC3300}
.style4 {color: #FF0000}
-->
</style></head>
<body>
<?
include("dbconnect.php");
if($delete==1){
$sql_deldata_registra = "delete FROM coursesubjectenrollment where id =' $subjectID ' ";
$query_del_registra = mysql_query($sql_deldata_registra, $connect_db) or die(mysql_error()); // ส่งคำสั่งไปในฐานข้อมูล
echo "<script type=text/javascript>"; // เป็นการสร้างข้อความแจ้งเตือน
echo "alert('Delete Done ')"; /// ส่งข้อมูลไปยังฐานข้อมูล และแสดงข้อความแจ้ง
echo "</script>";
}
if($insert=1){
if ($studentID ==" " and $courseID == " ") {
echo "<script type=text/javascript>";
echo "alert('Please Enter StudentID and Select Course Name')";
echo "</script>";
print "<a href='registra.php'>Please enter new information</a>";
exit();
}
mysql_query(
"INSERT INTO coursesubjectenrollment (studentID , courseID, subjectID , termID ) VALUES( '$studentID' , '$courseID' , '$subjectID' , '$termID') ")or die(mysql_error());
echo "<script type=text/javascript>"; // เป็นการสร้างข้อความแจ้งเตือน
echo "alert('SAVE DONE ')"; /// ส่งข้อมูลไปยังฐานข้อมูล และแสดงข้อความแจ้ง
echo "</script>";
exit();
}
?>
</p>
<form action="registra.php" method="post" name="form_enroll" id="form_enroll">
<label>Registra SubjectID :
<input type="text" name="search" id="search" />
<input type="submit" name="button" id="button" value="Submit" />
<br />
</label>
<label></label>
<p> Enter StudentID Please :
<label>
<input type="text" name="studentID" id="studentID" />
</label>
<span class="style4">*</span></p>
<p>Select Course Name :
<label>
<select name="courseID" id="courseID">
<?
$sql_registra = "SELECT * FROM course "; // เขียนคำสั่งSQLเพื่อเรียกฐานข้อมูลมาแสดง
$query_registra= mysql_query($sql_registra, $connect_db) or die(mysql_error()); //ส่งค่าSQL ไปเพื่อเรียกฐานข้อมูลมาแสดง โดยโยน $sql_positionไปใส่ใน $connect_db เพื่อติดต่อฐานข้อมูลดึงข้อมูล
$row_registra= mysql_fetch_assoc($query_registra);//$row_position เป็นตัวแปร array ที่เรียกใช้ตารางทุกบรรทัดออกมาแล้วเก็บใน $row_position
do { // การแสดงลูป ที่ต้องการดึงจากทุกบรรทัดในฐานข้อมูล หากไม่มี ตรงนี้ จะแสดงข้อมูลสุดท้ายในฐานข้อมูล
?>
<option value="<?php print $row_registra[courseID];//ค่าที่เรียกจากฐานข้อมูลมาแสดงใน list box$row_position[ชื่อฟิวส์]; ?> "><?php print $row_registra[coursename]; // เป็นค่า value แสดงให้ผู้ใช้เห็นโดยดึงจากฟิวส์position_name ?></option>
<?php } while ($row_registra = mysql_fetch_assoc($query_registra)); // ถ้าค่า$query_position เท่ากับ$row_position แล้ว ให้จบลูป?>
</select>
</label>
<span class="style4">*</span></p>
</form>
<p>
<form id="form1" name="form1" method="post" action="">
<table width="917" height="99" border="1">
<tr background="BG/CA2FG5Y3.jpg">
<td width="101"><h4 align="center" class="style2">SubjectID</h4></td>
<td width="136"><h4 align="center" class="style2">Subject Name</h4></td>
<td width="134"> <h4 align="center" class="style2">Credits</h4></td>
<td width="127"><h4 align="center" class="style2">Courses Name</h4></td>
<td width="119"><h4 align="center" class="style2">Term</h4></td>
<td width="95"><h4 align="center" class="style2">Confirm</h4></td>
<td width="146"><h4 align="center" class="style2">Delete</h4></td>
</tr>
<?
$sql_registra = "select
`subject`.`subjectID` AS `subjectID`,
`subject`.`subjectname` AS `subjectname`,
`subject`.`Credits` AS `Credits`,
`subject`.`termID` AS `termID`,
`course`.`coursename` AS `coursename`
from
(`course` join `subject` on((`course`.`courseID` = `subject`.`courseID`)))
where subject.subjectID like '%$search%' or subject.subjectname like '%$search%' ";
$query_registra = mysql_query($sql_registra, $connect_db) or die(mysql_error());
$row_registra= mysql_fetch_assoc($query_registra);
do { ?>
<tr>
<td ><?php print $row_registra[subjectID]; ?></td>
<td><?php print $row_registra[subjectname]; ?></td>
<td><?php print $row_registra[Credits]; ?></td>
<td><?php print $row_registra[coursename]; ?></td>
<td><?php print $row_registra[termID]; ?></td>
<td><div align="center"><a href="registra.php?insert=1&id_select=<?php print $row_registra[subjectID]; ?>" ><img src="ICON/CAABWFMP.jpg" width="95" height="49" align="middle" /></a></div></td>
<td><h3 align="center"><span class="style3"><a href="registra.php?delete=1&id=<?php print $row_registra[subjectID]; ?> ">Delete</a></span></h3></td>
</tr>
</table>
</form>
</body>
</html>
รบกวนช่วยหน่อยนะค่ะ ตรวจดูแล้วก็ปิดครบ แต่ไม่รู้ทำไม error งงค่ะ
Code
Parse error: syntax error, unexpected $end in D:\AppServ\www\ROY\registra.php on line 115
|
|
|
|
|
Date :
2009-07-27 17:33:11 |
By :
na |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษก่อนเลยนะครับ เขียนโค้ดได้มึนดีจริงๆครับ php สลับ html ไปมา แทบเมาเลยครับ
function httext($text,$search) {};
ใช้ทำอะไรหรือครับ เห็นในปีกกาไม่มีคำสั่งอะไรเลย
exit();
}
?>
</p>
<form action="registra.php" method="post" name="form_enroll" id="form_enroll">
เห็นมีแต่ tag ปิดไม่มี tag เปิดก่อนหน้าเลยครับ
แล้ว form นี่ใช้ 2 form ใน 1 หน้าเลยหรือครับ
ทีนี้หน้า registra อันไหนหรือครับ ใช่อันบนป่ะ
|
|
|
|
|
Date :
2009-07-27 20:02:15 |
By :
amuropao08 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($insert=1){ //tag เปิด ค่ะ
.
.
.
exit();
}
?>
|
|
|
|
|
Date :
2009-07-27 22:28:26 |
By :
na |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2009-07-27 22:29:39 |
By :
na |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if($insert=1){
if ($studentID ==" " and $courseID == " ") {
echo "<script type=text/javascript>";
echo "alert('Please Enter StudentID and Select Course Name')";
echo "</script>";
print "<a href='registra.php'>Please enter new information</a>";
exit();
}
ปีกกาปิดหายไปตัวนึงครับ มี 2 if
Code (PHP)
exit();
}
?>
</p>
<form action="registra.php" method="post" name="form_enroll" id="form_enroll">
ส่วนช่วงนี้ผมหมายถึง tag <p> น่ะครับ เห็นมีแต่ </p> ก่อนหน้าไม่มี <p> อยู่เลย
|
|
|
|
|
Date :
2009-07-28 16:50:38 |
By :
amuropao08 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!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=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<center>
<?php
$w = $_GET[width];
$h = $_GET[height];
if ($w == '')
{
?>
<form id="form1" name="form1" method="get" action="">
กว้าง :
<input type="text" name="width" id="width" />
<p>
ยาว :
<input type="text" name="height" id="height" />
</p>
<p>
<input type="submit" name="button" id="button" value="Submit" />
<input type="reset" name="button2" id="button2" value="Reset" />
</p>
</form>
<? }
else {
echo "พื้นที่สี่เหลี่ยม = ".($h*$w); }
?>
<br /><br /><a href="index.php">กลับสู่หน้าหลัก</a></center>
</body>
</html>
มัน error ค่ะ ช่วยดูให้หน่อย
|
|
|
|
|
Date :
2012-03-04 11:18:49 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อะไรเออเร่อ เออเร่ออะไร ใครจะรู้
|
|
|
|
|
Date :
2012-03-04 11:36:35 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มัน error ตรงบรรทัดสุดท้าย ลงเอาไปรันดูดิ
|
|
|
|
|
Date :
2012-03-04 15:31:30 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำไมผมต้องรันด้วยครับ คุณบอกมันเออเร่อ ทำไมคุณไม่ copy error มาดูครับ
|
|
|
|
|
Date :
2012-03-04 16:13:38 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
( ! ) Parse error: syntax error, unexpected $end in C:\wamp\www\cal\c1.php on line 41
|
|
|
|
|
Date :
2012-03-04 16:24:17 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี้อ่ะมัน error แบบนีแหละคร๊
|
|
|
|
|
Date :
2012-03-04 16:25:42 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ผมไล่ดูแล้วมันไม่น่าจะเกิด error ที่ว่านี้ได้นะครับ โค๊ดมีแค่นี้จริงหรอครับ?
|
|
|
|
|
Date :
2012-03-04 16:28:05 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แค่นี้คร๊
|
|
|
|
|
Date :
2012-03-04 16:37:18 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อืมม คิดว่าน่าจะเจอแล้วแหละ คุณคงไม่ได้ปิด short_open_tags
<? }
else {
echo "พื้นที่สี่เหลี่ยม = ".($h*$w); }
?>
เปลี่ยนเป็น
<?php }
else {
echo "พื้นที่สี่เหลี่ยม = ".($h*$w); }
?>
นอกนั้นผมคิดว่าไม่น่าจะมีที่ผิดที่จะ error แบบนั้นได้ครับ
|
|
|
|
|
Date :
2012-03-04 16:42:39 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คร๊ ขอบคุนคร๊
|
|
|
|
|
Date :
2012-03-04 16:49:45 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยัง Error เหมือนเดิม
|
|
|
|
|
Date :
2012-03-04 16:53:26 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าโค๊ดแค่นั้น ผมยืนยันนอนยันเลยครับว่าไม่ error แบบที่คุณบอกแน่
|
|
|
|
|
Date :
2012-03-04 18:07:06 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูนะ
Code (PHP)
<!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=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<center>
<?php
$w = $_GET[width];
$h = $_GET[height];
if ($w == ''){
?>
<form name="form1" method="get" action="">
กว้าง : <input type="text" name="width" id="width" /><br />
ยาว : <input type="text" name="height" id="height" /><br />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
<?
} else {
echo "พื้นที่สี่เหลี่ยม = ".($h*$w);
}
?>
<br /><br /><a href="index.php">กลับสู่หน้าหลัก</a></center>
</body>
</html>
|
|
|
|
|
Date :
2012-03-04 19:43:44 |
By :
บังเอิญผ่านมาเห็น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยัง Error เหมือนเดิม
|
|
|
|
|
Date :
2012-03-04 20:03:44 |
By :
pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|