Posts by Denys Xavier • 101 points
4 posts
-
0
votes1
answer583
viewsA: Error while doing image update "Array to string Conversion"
When you try to concatenate the $image variable inside the string of your UPDATE command it is not possible because $image is an array and not a string. I believe you are trying to get the name of…
-
1
votes1
answer105
viewsA: Oraoledb - What is
In short Oraoledb is a driver made in the standard OLEDB that serves to connect to Oracle databases. If this message appears in your company’s application, it is most likely that the bank is down,…
oracleanswered Denys Xavier 101 -
1
votes1
answer987
viewsA: Grab each row of a CSV file
Caio, I believe that whatever you want to make a kind of matrix with row and column. So: line 1 column 1: CAIO column 2: 0909 Column 3: pineapple line 2 column 1: BRUNO column 2: 1231 column 3:…
-
2
votes1
answer1577
viewsA: Open android app via php
This can be done with any link. What matters is whether the application has the Intent configured in the Activity manifest. Let’s imagine that the application manifest is like this: <activity>…