php读取html

php读取html,第1张

preg_match('/<p align=\"center\"><big><strong>(.*?)<\/strong><\/big><\/p>/',$str,$result)

$str就是上面的html里面的内容,$result就是匹配到的字符串,你可以print_r($result)看看里面就有你要的结果,或者直接echo $result[1]就是

“在LINUX下配置MYSQL、PHP和JSP”这几个字符了

请采纳。

如果你的php页面和html页面不是同一个页面的话,可以将这个值存入cookie中,使用js就可以获取到。

如php存值在cookie中:setcookie("my_name","xiaoming",time()+3600)

那么在js中可以这样获取:

function getCookie(c_name) {

if (document.cookie.length > 0) {

c_start = document.cookie.indexOf(c_name + "=")

if (c_start != -1) {

c_start = c_start + c_name.length + 1

c_end = document.cookie.indexOf("", c_start)

if (c_end == -1) c_end = document.cookie.length

return unescape(document.cookie.substring(c_start, c_end))

}

}

return ""

}

使用上面的这个函数:getCookie('my_name')就可以得到php端存的这个值“xiaoming”了。

<td align="center"><input type="text" name="sparkqty" size="3" maxlength="3"></td></tr><tr><td colspan="2" align="center"><input type="submit" value="Submit Order"></td></tr></table></form>php页面代码:<?php//创建三个对象来接收页面上传过来的值$tireqty = $_POST['tireqty']$oilqty = $_POST['oilqty']$sparkqty = $_POST['sparkqty']//声明并初始化三个常量用来计划订购商品的总金额define('TIREPRICE',100)define('OILPRICE',10)define('SPARKPRICE',4)//创建两个变量来保存订购商品的总数和总金额$totalqty = $tireqty + $oilqty +$sparkqtyecho 'Items ordered: '.$totalqty.'<br />'$totalamount = $tireqty * TIREPRICE + $oilqty * OILPRICE + $sparkqty * SPARKPRICEecho 'Subtotal: $'.number_format($totalamount,2).'<br />'//声明并初始化税金变量$taxrate = 0.10$totalamount =$totalamount *(1+$taxrate)echo 'Total including tax:$'.number_format($totalamount,2).'<br />'echo '<p>Your order is as follows:</p>'echo $tireqty.' tires<br />'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6147206.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存