Hi
I am not able to use an Iframe the client has said this is not allowed for some reason.
Being fairy new to php how would I code either of the options.🙂
If i right click the image on my server it show as follows: -
http://www.myserver.com/ref/images/CMB01/CTBMLogo1.gif
If i right click it on the server I am allowed to use the content from it is as follows: -
https://www.thereserver.co.uk/ref/images/CMB01/CTBMLogo1.gif
This is the script im using:-
<?php
$file = file_get_contents ("https://www.theserver.co.uk");
Echo $file;
?>
Thanks
PHPNEWTOIT