Hi, I am new to PHP.
I created a web site template in PHP for people to use:
Within the template I am pulling in rental listing info from my site (pickrent.com) and displaying it on a template on their server using an IFrame.
This is working just fine for example here:
However it is not working here:
(hopefully this link is still live.)
The error I am getting is:
"Error on Page: param: ad=%3C?%20print%20($_GET["
So for some reason the code I am using to pull in the "ad" parameter from the URL:
<? print ($_GET["ad"]); ?>
is not working on the mylifeplace.com site like it is on the other one.
The iframe of the ad is coming from this page:
which as you can see is done in Coldfusion.
Perhaps could there be differences between the two servers where the 'print' function does not work all the time? Should I be using echo instead?
I created a web site template in PHP for people to use:
Within the template I am pulling in rental listing info from my site (pickrent.com) and displaying it on a template on their server using an IFrame.
This is working just fine for example here:
However it is not working here:
(hopefully this link is still live.)
The error I am getting is:
"Error on Page: param: ad=%3C?%20print%20($_GET["
So for some reason the code I am using to pull in the "ad" parameter from the URL:
<? print ($_GET["ad"]); ?>
is not working on the mylifeplace.com site like it is on the other one.
The iframe of the ad is coming from this page:
which as you can see is done in Coldfusion.
Perhaps could there be differences between the two servers where the 'print' function does not work all the time? Should I be using echo instead?