Skip to content Skip to sidebar Skip to footer

HTML Generator: Convert HTML To PlainText And Put In A TextBox Using PHP

I would like to make a generator to get easy work in eBay description. So i've created a page with some form input that send the value to a php page in the main page iframe. Now I

Solution 1:

You can use file_get_contents

$homepage = file_get_contents('http://www.example.com/');


echo $homepage;

or

 echo "<td><input type='text' value='$homepage'/></td>";

or for i frame

<iframe> 
   <div inside frame>
      <$php echo $content; ?>
   </div>
</iframe>

Post a Comment for "HTML Generator: Convert HTML To PlainText And Put In A TextBox Using PHP"