[Help]Quotation mark in string?[Solved]
so i have this code:
[PHP]
dim web as htmldocument
web = _
_ javascript
:isIE=/*@cc_on!@*/false;isIE ? swfHTML=document.getElementById('movie_player').ge tElementsByTagName('param')[1].value:swfHTML=document.getElementById("movie_play er").getAttribute("flashvars");w=swfHTML.split("&" ); for(i=0;i<=w.length-1;i++) if(w[i].split("=")[0] == "fmt_url_map"){links=unescape(w[i].split("=")[1]);break;}abc = links.split(",");for(i=0;i<=abc.length-1;i++){fmt=abc[i].split("|")[0];if(fmt==18){url = abc[i].split("|")[1];window.location.href = url;}}
[/PHP]
yet, it make it end at the "movie_player" because there is a quote
how would i make it work
this is youtube download code btw

[php]Private Const quote as String = """"[/php]
Usage:
[php]Dim testString as String
testString = "This is " & quote & "my" & quote & " house!"
MsgBox(testString)[/php]
Would display:
This is "my" house!