Page 1 of 1

Why UI Text Box And Button Not Display When iFrame Present

Posted: Fri Sep 29, 2017 6:02 pm
by UniqueIdeaMan
Php Guys,

Why does not the UI Text Box and "Browse!" button get displayed below the iframe ?

Code: Select all

			<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>
                        </form>

Get rid of the iframe code and the button gets displayed! What a mystery!

Code: Select all

			
			<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>
                        </form>

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Sat Sep 30, 2017 8:29 pm
by UniqueIdeaMan
Closing tag was missing! Got pointed this out!
<iframe src="http://cnet.com"></iframe>
Silly NotePad++ did not show error.

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Sun Oct 01, 2017 8:31 am
by Celauran
UniqueIdeaMan wrote:Silly NotePad++ did not show error.
Might be worth checking out Sublime Text, VS Code, or even PHPStorm.

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Sun Oct 01, 2017 12:30 pm
by Vegan
I use Visual Studio and it can highlight PHP code as nicely as C++ or C#

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Tue Oct 03, 2017 2:46 am
by roaminpizza
This plugin needs to be distinguished from the IFrame Dialog Field plugin.

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Wed Oct 04, 2017 8:46 am
by UniqueIdeaMan
Celauran wrote:
UniqueIdeaMan wrote:Silly NotePad++ did not show error.
Might be worth checking out Sublime Text, VS Code, or even PHPStorm.
They are editors or IDE ? Getting suggested to get the IDEs. They say free ones available. Which ones you recommend (free ones) ?
On the other hand, I will have to research what an IDE is! Lol!

Re: Why UI Text Box And Button Not Display When iFrame Prese

Posted: Wed Oct 04, 2017 11:05 am
by Celauran
Sublime and VS Code are editors. PHPStorm is an IDE. Of those, only VS Code is free. If you want a free IDE, check out NetBeans. It’s not nearly as good as PHPStorm, but it’s not bad.