I need Help with some javascript code

by 4 replies
5
Hi, I managed to get a video url from other page but I need to load that video with jwplayer.
Here is where I got.

CODE:
<html>
<head>
</head>
<body>
<?php
include ('functions.php');
$scraped_page = curl("http://somepage.com");
$scraped_data = scrape_between($scraped_page, "eval", "</script>");
echo '<div id="packed" style="visibility:hidden;">';
echo 'eval'.$scraped_data;
echo '</div>';
?>
<script language="javascript" type="text/javascript">
var coded = document.getElementById('packed').innerHTML;
var code;
eval("var value=String" + coded.slice(4));
code = value;
var vidurl = code.substr(156,90);
var imgurl = code.substr(270,51);
</script>
</body>
</html>

I need to pass to jwplayer the vidurl as the video and imgurl as thumbnail
#programming #code #javascript
  • Did you fix it already?

    If not send me an pm. with the page and the links to the video and image.
  • You shouldn't be doing it this way. Avoid "eval" wherever you can.
  • You should try this class"PHP Simple HTML DOM Parser".
    You can download it from here: PHP Simple HTML DOM Parser
  • Hi,

    I can help you. Please contact me if you still need some help.
    Thanks

Next Topics on Trending Feed