Posts by SamuelPeixoto • 74 points
9 posts
-
0
votes1
answer182
viewsA: Failure to start Jitsi Meet API - lib-jitsi-Meet error in initJitsiConference (Typeerror: Cannot read Property 'substr' of null)
Looking more carefully, I concluded I wasn’t expecting (addEventListener) by CONECTION_ESTABLISHED event and with some modifications to the code... I also withdrew the option bosh:…
javascriptanswered SamuelPeixoto 74 -
-1
votes1
answer182
viewsQ: Failure to start Jitsi Meet API - lib-jitsi-Meet error in initJitsiConference (Typeerror: Cannot read Property 'substr' of null)
Hello! I’m trying to use the Jitsi Meet API to create video conferencing with the customized GUI and I tried to follow the guidelines of documentation but I did not succeed, I always get the same…
javascriptasked SamuelPeixoto 74 -
1
votes2
answers6384
viewsA: Consume web service (WSDL) in PHP
Try this code: <?php $client = new SoapClient('https://epfweb.safra.com.br/WCF/SvcContratos.svc?wsdl'); $function = 'GerarToken'; $arguments= array('GerarToken' => array( 'DsUsuario' =>…
-
0
votes4
answers3179
viewsA: How do DIV fill 100% of the display?
Utilize $(window).resize(); see that the <DIV> is adjusted by modifying the screen size. $(window).on("load resize", function(){ $("#primeira").css("height",window.innerHeight+"px"); });…
-
3
votes2
answers56
viewsA: How do I get all 60 numbers
An array with the 60 results: class CodeGen{ private $codes = array(); public function __construct($codes) { $this->codes = $codes; } public function getRandomCode($min, $max){ $next = 60; while…
phpanswered SamuelPeixoto 74 -
1
votes3
answers90
viewsA: Is it possible to use functions within a condition?
The function console.log() serves to show something in the browser console. Despite being a function, it gives no return, Javascript has some forms of Display, the Console.log() is one of them. The…
-
0
votes1
answer303
viewsA: Help - PHP Specific Upload
Follow a suggestion, there are numerous ways to understand and do what you need. The "customer account" can be a record in the database or a specific folder. Html can be similar to this:…
-
1
votes1
answer1789
viewsA: Passing id with Hidden field via $_POST
Sending via $_POST is correct, but note that you are already displaying the id ($id = $_GET['id'];) in URL, what makes this id visible to all. This is a matter of taste, however you should really…
phpanswered SamuelPeixoto 74 -
0
votes2
answers827
viewsA: php error with mysql and mysqli
Alessandro Pardo, you must follow the php documentation according to the extension used Improved Mysql extension The consultation part should look like this: $variavel = mysqli_query($conectar,…