Posts by Casima • 58 points
10 posts
-
1
votes1
answer155
viewsA: Centering H3 in Section (Vertically and Horizontally)
section{ background-color: #1C1624; width: 100%; height: 300px; } .StarsSky { width: 100%; height: 100%; background-image: url('../images/star.png'); } h3{ font-size: 4em; color: #F0FFFF;…
-
0
votes5
answers939
viewsA: Centralize H3 in the Section
section{ background-color: #1C1624; width: 100%; height: 300px; } .StarsSky { width: 100%; height: 100%; background-image: url('../images/star.png'); } h3{ font-size: 4em; color: #F0FFFF;…
-
0
votes2
answers31
viewsA: Add value in name
Do so: <?php $i = 1; while ($i <= 2) { ?> <div class="container"> <div class="jumbotron"> <h1>Dados da primeira Criança</h1> <form action="paginaAcao"> <div…
-
-2
votes3
answers1436
viewsA: What is the fastest way to calculate the sequence of Fibonacci
Try this code: recursive #include <stdio.h> int fib(int n) { if (n == 1) return 1; else if (n == 2) return 1; else return fib(n - 1) + fib(n - 2); } int main(void) { int n; scanf("%d",…
-
0
votes2
answers21
viewsA: Error sending form. This simple code is not working
The Action attribute is missing with the page that will receive the form or will treat the form of this data and method attribute whether it will be POST or GET
-
-3
votes5
answers1659
viewsA: What is the best way to pass data between php files
Given what I see in the question , is a form for a Mysql, you can use GET to list there you will have your data passed by URL where you should make them friendly , you can use POST to add , PUT to…
-
1
votes0
answers138
views -
1
votes3
answers23335
viewsA: avoid line break within a table, or minimum size
Try using this: table { table-layout:fixed; width:100%; border:1px solid #f00; word-wrap:break-word; }
-
1
votes0
answers85
viewsQ: Friendly URL in Scope
How can I pass: categoryId=101010&subcategoryId=1210101020&priceMin=1000&priceMax=3000 To: /tv/smart-tv/1000/3000 no $scope?…
-
-1
votes1
answer234
viewsQ: I can’t use json return in php
Good morning guys, I’m having following problem, using a php api. I make a call that calls me back : Then when I give an echo var_dump() it says string(27398) then I do json_decode() and make a…