Quote:
Originally Posted by DiesellMinded
For 3 days i have looked at all your definitions copy and pasted and i have a thread opver 10 pages log with me just testing it , It wont work because i dont know the location of the player.swf ,
Ill pay pal you $20 ASAP if you help me
http://diesel.powertvonline.com
PHP Code:
http://diesel.powertvonline.com/video/7156
7156 is what changes per video
PHP Code:
<embed src="http://www.powertvonline.com/xp2/ZGllc2VsLnBvd2VydHZvbmxpbmUuY29t/7156/1265/off" type="application/x-shockwave-flash" width="430" height="343"></embed>
You can see the 7156 in the embed code
PHP Code:
<embed src="http://www.powertvonline.com/xp2/ZGllc2VsLnBvd2VydHZvbmxpbmUuY29t/$p1/1265/off" type="application/x-shockwave-flash" width="430" height="343"></embed>
Does not work , i think i have tried every possible combination of numbers letters and symbols Please help .
And Also
http://YOUSITEHERE.powertvonline.com AME Support
|
And did you group the video ID in the RegEx? The $p1 variable has to be told what replaces it. It will replce the fist group in your ReGex, which is anything in a set of parenthethis (). Looking back at the RegExs you posted, I don't see any groups, so $p1 has no way of becoming the video ID. You need to group the area of the RegEx that represents the video ID in the URL. Examples would be
([\w]+) or
([\d]+)