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><inputtype='text'value='$homepage'/></td>";

or for i frame

<iframe> 
   <div inside frame>
      <$phpecho$content; ?>
   </div>
</iframe>

Post a Comment for "Html Generator: Convert Html To Plaintext And Put In A Textbox Using Php"