<form name="search" method="post" >
Input texts and numbers: <input type="text" name="find"><br>
</form>
<?php
if(!empty($_POST)){
echo $_POST['find'];
}
问题:
我想echo all the contents before texts(包括文本),例如。如果用户输入'mynumber11',则显示'mynumber',如果用户输入'123mynumber11',则显示'123mynumber',如何做到这一点?