Categories
How to get this line?
I need to get values from a tag that cannot be changed, here is the code that is in the form: How can I get this id? <a name="id"><?= $order['id']; ?></a>
<a name="id"><?= $order['id']; ?></a>
Answer the question
In order to leave comments, you need to log in
$re = '/<a name="id">(\d+)/'; if (preg_match($re, $html, $m)) { echo $m[1]; }
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question