Posts by Diego Gomes • 69 points
5 posts
-
1
votes1
answer383
viewsA: Compare URL to PHP
strcmp( string $str1, string $str2 ) Takes two strings as parameter. Returns < 0 if $str1 is less than $str. Returns > 0 if $str1 is greater than $str2 and finally returns 0 if the two strings…
phpanswered Diego Gomes 69 -
0
votes1
answer206
viewsA: Alternative SOAP to WADL in PHP
this way is correct, the error was that the server sent me the path forcing the input on port 8080 and Soapclient was not recognizing the path to the server.
-
1
votes1
answer206
viewsQ: Alternative SOAP to WADL in PHP
I’m trying to send some parameters to the pounds file? wadl via SOAP POST, but from what I understand SOAP does not recognize the WADL format. I tried to use some things like Httpful and PHP REST…
-
1
votes2
answers436
viewsA: Onclick on Canvas
You can dynamically put onClick with . setAttribute( "onClick", "Function( " + parameters + ")" ), if the function parameters are dynamic and . setAttribute( "onClick", "Function( parameters )" ) in…
-
3
votes6
answers2843
viewsA: What is the correct term to call someone who makes HTML code?
Usually who is in charge of HTML, CSS, Javascript and etc, is a Front-End. So I believe that would be the right definition in this context. As for programming or writing this depends on person to…