Posts by Edward Junior • 243 points
14 posts
-
4
votes1
answer198
viewsQ: Array no . ini How to do?
Hello folks I would like to know if to the possibility of array in . ini Using php to call it ?
-
3
votes1
answer111
viewsQ: How to use {} instead of opening PHP tags?
I see in various Muonline sites, as well as in others, I see the staff use instead of <? SERVER_NAME; ?> they use {#SERVER_NAME}, without opening PHP tags. Instead of using <?…
phpasked Edward Junior 243 -
1
votes1
answer1453
viewsQ: How to extract content from a PHP page?
Guys I’m basically trying to get some data from SEFAZ, to check if it is online or unavailable at the moment I’m not getting it up because I don’t know, I wonder how I can is picking up a certain…
-
-2
votes1
answer84
viewsQ: How can I correctly use a PDO object for a selection query
i followed the recommendations of php.net, to make a select in a certain database using PDO, however I do not know if I am doing it the right way, I wonder if you can help me $duosig = "SELECT…
-
-2
votes4
answers3752
viewsQ: Error inserting Object of class Pdostatement database could not be converted to string
I’m trying to insert some data into a table using PHP and some errors are happening. This is the way I’m using to insert: $cnpj = "000001"; $sth = $lokos->prepare("INSERT INTO CLENTES (CNPJ)…
phpasked Edward Junior 243 -
2
votes2
answers120
viewsQ: Difference between [ID="MAIN"] and #MAIN
Guys, can anyone tell me the difference between: [ID=""] and # [CLASS=""] and . What difference do they make, code get bigger? Uglier?…
cssasked Edward Junior 243 -
-13
votes3
answers642
viewsA: Undefined variable error occurs when using classes
all I had to do was give only the code itself public function conecta() { $lokos = new PDO("firebird:localhost=$this->host;dbname=$this->dbnome", $this->user, $this->pass); return…
phpanswered Edward Junior 243 -
-3
votes3
answers642
viewsQ: Undefined variable error occurs when using classes
I’m making a connection with Firebird through a PHP class, using PDO, however it is occurring a very sinister error in which I got lost, watch the pages, index.php / connect.php and class. INDEX.PHP…
phpasked Edward Junior 243 -
3
votes1
answer4523
viewsQ: How do I select in PHP With FIREBIRD PDO?
I have already made a correct connection with Firebird using PHP, however I would like to know how I can make one select in a certain bank. Can someone please help me? <?php $user = "SYSDBA";…
-
2
votes2
answers23894
viewsA: Unable to locate driver (Pdoexception "could not find driver")
I was able to solve however the correct line to enable the PDO of Firebird in php.ini is extension=php_pdo_firebird.dll And not extension=php_firebird.dll…
-
1
votes2
answers23894
viewsQ: Unable to locate driver (Pdoexception "could not find driver")
I’m trying to make a connection to my FIREBIRD database, but when I organize it right, I put the IP where it is located etc. The message appears: COULDN’T LOCATE DRIVER ON c/wamp/www//// What should…
-
7
votes2
answers579
viewsQ: Is it possible to use stylesheet in an app?
I’m starting a development in Eclipse, however the style is very ugly, borders, letters etc. You can use CSS on Android?
-
0
votes1
answer163
viewsQ: min-height, doesn’t work on mobile what do I do?
I’m developing a desktop and mobile site, but when I’m on mobile, I have to decrease the height of the slider on the right mobile, however when I put min-height:250px ! Mportant, it won’t , even if…
-
2
votes2
answers3435
viewsQ: How to hide iframe when entering the site
Guys I’m with a code <div class="box"> <button id="showr">Mostrar</button> <button id="hidr">Esconder</button> <div> <iframe width="420" height="345"…