Suppose i have to files named 'main.
html' and 'go.
html' in same directory.
and the url of -
main.
html =
http://...../main.html?id=123
Now i want to read this string
123 and place it in an iframe inside main.
html.
as like-
Code:
<html>
<body>
<iframe style="vertical-align: middle;" height="30%" SRC="go.html#id" scrolling="auto" width="100%"
frameborder="0"></iframe>
</body>
</html>
is there any way i could get that string in
SRC="go.html#id n replace id with 123.
i thought
SRC="go.html#<? print($id) ?>" may work.but it didnt.
my host doesnt support url_fopen and curl..thats the problem..so
php echo didnt work..
plz show a way guyz...i thing its nothing difficult for u ..
p/s:what do u think about javascript..?