|
|
|
รบกวนด้วยค่ะจะส่งค่าไปอีก formหนึ่งแต่ส่งไม่ได้ค่ะ |
|
|
|
|
|
|
|
ไม่มี submit เหรอ ครับ
|
|
|
|
|
Date :
2011-06-15 14:05:38 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากใช้เป็นลิงค์ค่ะพอมีวิธีไหมค่ะ
|
|
|
|
|
Date :
2011-06-15 14:15:11 |
By :
deedee2338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูนะครับเพื่อจะเข้าใจ
Code (PHP)
<?php
$name ="TEST LINK";
echo '<a href="link1.php?text='.$name.'">link</a>';
?>
Code (link1.php)
<?php
echo $_GET['text'];
?>
|
|
|
|
|
Date :
2011-06-15 14:36:53 |
By :
treza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำแบบพี่ออกค่ะแต่อยากได้แบบรับค่าเข้ามาค่ะ
|
|
|
|
|
Date :
2011-06-15 14:41:07 |
By :
deedee2338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<form action="" method="post">
<input type="text" name="txtstore" />
<input type="submit" name="botton" value="ตกลง">
</form>
<?
$name = $_POST[txtstore];
if($_POST['button']=='ตกลง' || $name !=''){
echo $name;
?>
<a href='test1.php?txttype1=<?=$name;?>'><img src="photo_banner/Open.png" width="2%" height="2%" border="0"/></a>
<?
}
?>
|
|
|
|
|
Date :
2011-06-15 14:48:13 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือเอาปุ่ม submit ไม่ได้จะมีปัญหากับฟังก์ชันอื่นเลยอยากใช้ลิงค์ค่ะ
|
|
|
|
|
Date :
2011-06-15 14:50:50 |
By :
deedee2338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งั้นก้อ ใช้ enter แทน อิอิ ได้เปล่า
<script>
function EnterSubmit(e,nform){
window.nform.submit();
}
</script>
<form action="" method="post" name="form1">
<input type="text" name="txtstore" onkeypress="EnterSubmit(event,'form1')"/>
</form>
<?
$name = $_POST[txtstore];
echo $name;
?>
<a href='test1.php?txttype1=<?=$name;?>'><img src="photo_banner/Open.png" width="2%" height="2%" border="0"/></a>
|
|
|
|
|
Date :
2011-06-15 15:07:29 |
By :
pumin99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี้คือโค้ดที่จะเอาไปเขียนค่ะ
Code (PHP)
<script>
var obj_current;
function op_lookup(obj,url,w,h){
obj_current=obj;
lookup_win=window.open(url,"lookup_win","width="+w+",height="+h);
}
function on_returnVal(search_type,objRow){
switch(search_type){
case '1':
obj_td=obj_current.parentElement;
obj_td.children[0].value=objRow.cells[0].innerHTML;
break;
case '2':
obj_td=obj_current.parentElement;
obj_td.children[0].value=objRow.cells[0].innerHTML;
break;
}
}
</script>
<tr>
<td align="right" width="50%" bgcolor="#66CCFF"><font color="#000000" size="3" face="Arial, Helvetica, sans-serif">ร้านค้า : <input type="text" name="txtstore1" value="<?=$result_store1[id_store];?>" onkeypress="if(event.keyCode==13)op_lookup(this,'search_store.php?search_type=1&search_store_txt='+this.value,500,500)"></td>
<td bgcolor="#66CCFF">ถึง : <input type="text" name="txtstore2" value="<?=$result_store2[id_store];?>" onkeypress="if(event.keyCode==13)op_lookup(this,'search_store.php?search_type=2&search_store_txt='+this.value,500,500)"></td>
</tr>
<tr>
<td align="right" width="50%" bgcolor="#66CCFF"><font color="#000000" size="3" face="Arial, Helvetica, sans-serif">วันที่ : <input type="text" value="<?=date('d');?>" size="2" name="day1">-<input type="text" value="<?=date('m');?>" size="2" name="month1">-<input type="text" value="<?=date('Y');?>" size="4" name="year1"></td>
<td bgcolor="#66CCFF">ถึง : <input type="text" value="<?=date('d');?>" size="2" name="day2">-<input type="text" value="<?=date('m');?>" size="2" name="month2">-<input type="text" value="<?=date('Y');?>" size="4" name="year2"></td>
</tr>
<tr>
//ตรงนี้ค่ะที่จะทำลิงค์ค่ะแต่ที่หนูทำมันไม่ไปค่ะ
<td bgcolor="#66CCFF" colspan="2" align="center"><a href='show_install_day2.php?txttype1=<?=$search_type;?>'><img src="photo_banner/Open.png" width="2%" height="2%" border="0"/></a> </td>
</tr>
|
|
|
|
|
Date :
2011-06-15 15:12:35 |
By :
deedee2338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|