Recent content by dunnome
-
D
PHP Correlate VBS and PHP for Server Use
Hello jack action. Here's some news :) I finally manage to finish the code, in case you need it someday (though I doubt), I give it to you. On the other hand, I can't find out how to do where there is a name with a space in it (ex : Lastname DE NAME), do you have any idea ? It's just a detail...- dunnome
- Post #13
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
I didn't understand "Write array as temp(0) instead of temp[0]." What to you mean ? If I did I tried anyway but the same error is displayed- dunnome
- Post #11
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
Well I wanted to try (with split instead of explode for now), and it says "Expected ')' Char 17" in that line "if (StrComp(temp[0], UCase(temp[0])) === 0) Then". The thing is that I don't know where the error is :s- dunnome
- Post #9
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
I'll try it when I can, I'll let you know. Thank you :)- dunnome
- Post #7
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
Told you I didn't master the VBS. Better ? :)- dunnome
- Post #5
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
So it would be ________________________________________________ Dim name as String temp = explode(" ", name, 2); Dim LastName as String Dim FirstName as String Do Until objFile.AtEndofStream if (StrComp(temp[0], UCase(temp[0])) === 0) Then LastName = temp[0]; FirstName= temp[1]; else...- dunnome
- Post #3
- Forum: Programming and Computer Science
-
D
PHP Correlate VBS and PHP for Server Use
Hello ! I have a php code that I'd like to use as a vbs one. But I don't know exacly how to do so. Could you help me please ? Actually, my vbs script will read a file line by line, take the first word, put it in 'LastName' and after the space, take the "FirstName". But if you reverse the Last...- dunnome
- Thread
- Php
- Replies: 13
- Forum: Programming and Computer Science