Posts by Marco Antonio Sktf10 • 30 points
9 posts
-
-2
votes2
answers6999
viewsA: How to change content of a select from another select
I think you could use this script <select name="odin" id="odin" onchange="turnTo(this)"> <option value="Vaca">Vaca</option> <option value="Boi">Boi</option> <option…
-
1
votes1
answer25
viewsA: Leave first item in menu enabled
Html => <html> <head><link rel="stylesheet" href="style.css"></head> <body> <ul class="nav-area"> <li id="go"> <a href="#">Cadeiras, Bancos e…
-
1
votes0
answers40
viewsQ: Error consuming api with Curl php -> 'Failed to connect to demo.d4sign.com.br port 443: Timed out'
When I consume an api with Curl php the following error appears: Failed to connect to demo.d4sign.com.br port 443: Timed out. Curl’s code: <?php $tknAPI; $cryptKey; $curl = curl_init();…
-
0
votes0
answers14
viewsQ: how to get the id of a Session in codeigniter?
then for example how I would get the id of the Session in order to manually set the id? Function bundle_purchase($method = "", $amount = "", $transaction_id = "", $session_id = ""){}
-
0
votes0
answers20
viewsQ: How to configure the session and user_id as soon as the method is called? (Codeigniter)
I have these two methods responsible for adding users from another system to that system. private function api_login ($ email, $ password) { $Curl = curl_init(); curl_setopt_array($Curl, […
-
-2
votes2
answers53
viewsA: HTML AND CSS - Why Images Aren’t Showing
Try to download the images and use them locally within the project or... in the div that is involving these disciplines places a: style="display: flex; flex-Direction: column; align-items: center;…
-
-5
votes2
answers72
viewsQ: Why does "0" not appear? Once the logic of "do while" is: do yourself then check
If you literally analyze the loop do while, makes perfect sense since something is done while this is true, but pragmatically has no logic. For example, in the code below, when we arrive at the…
-
0
votes1
answer384
viewsA: Disqus does not load on website
Manually set a style="width: 100%" in the div you take from Disqus itself or increase the width of the div that surrounds this div take from Disqus
-
0
votes0
answers13
viewsQ: How to make a query in Mysql Database by filter: in the last 3 days?
I am trying to make a query of users who entered my database in the last 3 days but have no return $condicaoData = date('yyyy-MM-dd HH:mm:ss'); $dataa = $condicaoData - '0000-03-00 00:00:00';…