I am required to copy and paste several codes on my websites and I just can't do it. the way I am doing it takes a bit more time. is there any alternative to do this more simply? I just need an option for inserting <br>
in every line. What I am doing is this: inserting <br>
in every line.
<br>$db = new mysqli("localhost", "root","","learndb");
<br>$stmt = $db->prepare("select * from admin where username = ?");
<br>$stmt->bind_param("s",$first);
<br>$stmt->execute();
<br>$result=$stmt->get_result();
<br>$myrow=$result->fetch_assoc();