Posts by Reji • 92 points
7 posts
-
1
votes2
answers286
viewsQ: Use of the REST question mark
I have a list of values on screen that as the user type will be filtered the options. If the user wishes to view all the records he will type: ?; Then my Rest call will be: meuservidor/buscar/? From…
-
1
votes1
answer263
viewsQ: How to generate images from a video?
I wonder if there is any way to generate images from a video, that video can be local or youtube. I basically have a video and I would like through a routine "taking prints" of the video.…
-
0
votes1
answer539
viewsQ: Mount an image from other images with PHP
Hello; I wonder if I can mount an image from other images sequentially. For example: Let’s say I have a register of words and images defined for each letter of the alphabet. When registering a word,…
-
1
votes1
answer618
viewsA: I cannot assign a database value to a php variable
You have not shown how you are trying to assign or if some error is happening, basically it should be done: $sql = mysql_query("SELECT * FROM db_usuarios WHERE login = '$usuario' and senha =…
-
2
votes0
answers146
viewsQ: Soapclient -> Coding problem(Invalid byte 2 of 3-byte UTF-8 Sequence)
I am making a request to a webservice with PHP(Soapclient), and when I have special characters, error/ defrormation occurs. What I’ve already tried: Set the parameter 'encoding'=>'ISO-8859-1' or…
-
1
votes2
answers2482
viewsA: How to send form data with onChange event to php
Hello, you are not calling the described function. You should add the function to your selection "onchange". <select name="sexo" onchange="getState()">
-
1
votes1
answer393
viewsQ: PHP webservice connection occurring Curl ERROR: 35
Hello, I am trying to make a connection to a webservice that uses SSL security, and it is necessary to use a certificate. I was trying initially on a linux server, but now I’m using it on my windows…