Php Guys,
Why does not the UI Text Box and "Browse!" button get displayed below the iframe ?
Get rid of the iframe code and the button gets displayed! What a mystery!
Why does not the UI Text Box and "Browse!" button get displayed below the iframe ?
Code:
<iframe src="http://cnet.com"</iframe>
<form method="post" action="">
<div class="form-group">
<label for ="url">Url: </label>
<input type="text" name="url_to_browse"><br>
<button type="submit" class="btn btn-default" name="browse">Browse!</button>
</div>
Get rid of the iframe code and the button gets displayed! What a mystery!
Code:
<form method="post" action="">
<div class="form-group">
<label for ="url">Url: </label>
<input type="text" name="url_to_browse"><br>
<button type="submit" class="btn btn-default" name="browse">Browse!</button>
</div>