RE: [PHP] Mixing PHP & VBSCript

2005-09-29 Thread Chris W. Parker
Jay Blanchard on Thursday, September 29, 2005 1:34 PM said: > Darn right 'wow'! > > I can keep the ASP seperate from the PHP by use of the proper tags > for this instance. So... > > <% stuff here gets executed by ASP %> > Wow. I didn't think that would work! haha

Re: [PHP] Mixing PHP & VBSCript

2005-09-29 Thread Satyam
A real interesting challenge and when I first read it I thought the same thing, instead of using the short form of tags, using a more extended form such as

RE: [PHP] Mixing PHP & VBSCript

2005-09-29 Thread Jay Blanchard
[snip] Your new job is getting real interesting! Did you try it on a test file? If it works then the parsing in the web server can be overloaded, for lack of a better term. So whether the extension is .asp or .php, watch for the tags and treat them appropriately, that it? [/snip] Darn right 'w

Re: [PHP] Mixing PHP & VBSCript

2005-09-29 Thread Miles Thompson
At 03:02 PM 9/29/2005, Jay Blanchard wrote: I have a situation where I have to fix an app interface that was constructed with hundreds of lines of VBScript. The quickest way for me to do this would be to replace the offending VBScipt with PHP. Does anyone see any potential problems with doing thi

RE: [PHP] Mixing PHP & VBSCript

2005-09-29 Thread Chris W. Parker
Jay Blanchard on Thursday, September 29, 2005 11:03 AM said: > I have a situation where I have to fix an app interface that was > constructed with hundreds of lines of VBScript. The quickest way for > me to do this would be to replace the offending VBScipt with PHP.