Hi i m using wordpress n using a specific theme which is used to add videos
what i m tryin to add a iframe tag in "videoembed" custom field which looks like this:
<iframe height="385" frameborder="0" width="476" scrolling="no" border="0" src="http://rock3r.zzl.org/movie/flv/mv.php?id=25JPJGD3">
-
- <iframe height="385" frameborder="0" width="476" scrolling="no" border="0" src="http://rock3r.zzl.org/movie/flv/mv.php?id=25JPJGD3">
and in that mv.php file i used these:
<body>
<?php
function ValidateID($ID='')
{
return preg_match('#^[0-9a-z]{1,10}$#i',$ID);
}
$MovieID = $_REQUEST['id'];
if(ValidateID($MovieID))
{ //Only show if the ID is valid to prevent injection
?>
<iframe width="476" scrolling="no" height="523" frameborder="0" src ='http://www.megavideo.com/?v=<?php echo $MovieID; ?>' border="0" style="float: left; margin-left: -26px; margin-top: -148px; Margin-Bottom: -148px;"></iframe>
<?php
}
?>
</body>
- <body>
-
- <?php
- function ValidateID($ID='')
- {
- return preg_match('#^[0-9a-z]{1,10}$#i',$ID);
- }
-
- $MovieID = $_REQUEST['id'];
- if(ValidateID($MovieID))
- { //Only show if the ID is valid to prevent injection
- ?>
- <iframe width="476" scrolling="no" height="523" frameborder="0" src ='http://www.megavideo.com/?v=<?php echo $MovieID; ?>' border="0" style="float: left; margin-left: -26px; margin-top: -148px; Margin-Bottom: -148px;"></iframe>
- <?php
- }
- ?>
- </body>
the problem is when i use the iframe tag in the "videoembed" field it doesnt show the whole page or anthing, besides the iframed video and the page dont scroll anymore. is there something wrong with code that i m using in "mv.php"? or ifame tag which is causing this? or do i have to do something in the theme files to fix this
any help will be very much appriciated
thx in advance
p.s. here is the link to the page where i used the iframe...
http://rock3r.zzl.org/movie/?p=22
-
- http://rock3r.zzl.org/movie/?p=22
and the usual page looks like this:
http://rock3r.zzl.org/movie/?p=7oh and thx very much once again for all of you guys here i found so many stuff here which helped a lot