Results 1 to 10 of 10

Thread: php dhtml vbscript problem

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Sep 2004
    Posts
    447

    php dhtml vbscript problem

    I have a page of vbscript included by "include file" in a php.
    Line 443 shows error:

    Parse error: syntax error, unexpected T_STRING in C:\xampp\htdocs\search\cat\cdynlistbox.php on line 443
    Line 443 is:
    Code:
    sTemp = sTemp & "<xsl:stylesheet xmlns:xsl=""http://www.w3.org/TR/WD-xsl"">" & vbCrlf
    Code:
    <script language="VBScript" runat="server">
    ...
    
    	Private Function GetXSLStream()
    		Dim sTemp
    		sTemp = "<?xml version='1.0'?>" & vbCrlf
    		sTemp = sTemp & "<xsl:stylesheet xmlns:xsl=""http://www.w3.org/TR/WD-xsl"">" & vbCrlf
    		sTemp = sTemp & "<xsl:template match=""/"">" & vbCrlf
    		sTemp = sTemp & "if (!assocArray) var assocArray = new Object();<xsl:for-each select=""root/table1"">" & vbCrlf
    		sTemp = sTemp & "assocArray[""%listname%=<xsl:value-of select=""@search"" />""] = new Array(" & vbCrlf
    		sTemp = sTemp & "<xsl:for-each select=""table2"">" & vbCrlf
    		sTemp = sTemp & "<xsl:value-of select=""table2"" />    ""<xsl:value-of select=""@dvalue"" />"",""<xsl:value-of select=""@display"" />""," & vbCrlf
    		sTemp = sTemp & "</xsl:for-each>    ""EOF"");</xsl:for-each>" & vbCrlf
    		sTemp = sTemp & "</xsl:template>" & vbCrlf
    		sTemp = sTemp & "</xsl:stylesheet>" & vbCrlf
    		GetXSLStream = sTemp
    	End Function
    
    ...
    </script>
    If you want the full script then check out the attached file zipped and in a txt file.
    Attached Files Attached Files
    Compare bible texts (and other tools):
    TheWheelofGod

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width