Posts by Luis Felipe • 51 points
6 posts
-
1
votes1
answer221
viewsQ: Put Outline into HTML5 USEMAP
I want to put edge or Outline on the image map in HTML. I tried to use: map area{outline: 1} But it didn’t work!
-
-1
votes2
answers211
viewsA: Pass an id "value" to an input field
function pesquisa(){ var valorInput = document.getElementById('procura').value; $.post('/valida.php',{valor: valorInput},function(data){ …
-
0
votes0
answers28
viewsQ: Connect my pc database to hosting
I want to connect the hosting in the local database of my PC I am using linux. I have ports 1604 and 8080 open. When I access my ip:port on an external network, I can access my website. But when I…
-
0
votes0
answers844
viewsQ: How to access Virtual Host from another pc on the same network
I want to access my site that is in #PC1 by mobile or #PC2, but I can only access it by the computer itself where it is, and if I try to enter from another computer only works if I put the IP of my…
-
1
votes2
answers968
viewsQ: PHP How to generate a unique ID equal to the GOOGLE shortener
goo.Gl/A4hi How can I be generating an ID like this from google and check if it already exists, if it succeeds generate another. PHP
-
1
votes2
answers316
viewsQ: Take the value of a string within a PHP variable
$a = " A=1 B=2"; I need to use echo in $a and display the value of B. I don’t want to use array. It’s because I’ll create a column in the database where it will house all active options. And I don’t…