So I think I’m missing something on terms of iframes. If run this line of php code:
echo"<iframe>sometext</iframe>";
The iframe shows up, but the text doesn’t. Is there a way of doing this that works?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t put text between IFRAME tags. Instead, put the text you want in the page in a separate document, and use
<iframe src="otherdocument.html"></iframe>.If what you want is for some text to show up in a separate, scrollable frame, you could also use a DIV with the appropriate style settings (set an absolute or percentage height and width, and set
overflowtoscroll).