|
|
|
เลือกตัดตัวอักษรตามจำนวนหลักที่รับเข้ามาทาง textbox จะทำอย่างไรค่ะ |
|
|
|
|
|
|
|
<?php
if(isset($_POST['submit']))
{
$word = "AB002-200-12"; //ข้อความก่อนเปลี่ยนค่า
$position = $_POST['pos']; //ตำแหน่งที่ต้องการเปลี่ยนค่า
$val = substr($word, ($position), 1);
echo "Old word : " . $word;
echo "<br/>";
echo "New word : " . substr_replace($word, $val+1,$position,1);
}
?>
<form name="myform" method="post">
Position : <input type="text" name="pos" id="pos">
<input type="submit" name="submit" value="Submit">
</form>
|
|
|
|
|
Date :
2010-12-04 23:03:49 |
By :
extenser |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากเลยนะค่ะ
|
|
|
|
|
Date :
2010-12-04 23:19:59 |
By :
jaajang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|