Posts by Carlos da Silva • 101 points
12 posts
-
0
votes1
answer45
viewsQ: How to Make an Image with php
I’d like to instead of the black background for an image, do you have how? I’d like to do the same: <?php header("Content-type:image/gif"); $img = imagecreate(470,246); $azul =…
-
0
votes1
answer36
viewsQ: How to Capture This Array
I’m trying to make a API. This is my code: require('conexao/conexao.php'); $jsonObj= array(); $query="SELECT * FROM filmes"; $sql = mysql_query($query)or die(mysql_error()); while($data =…
-
1
votes0
answers22
viewsQ: password . htaccess
Good morning to all, so guys I’m riding a movie server and I have several movies in a vps and my site is housed in hostgator. Can I put a password with . htaccess in my vps and authenticate with the…
htaccessasked Carlos da Silva 101 -
0
votes1
answer27
viewsQ: I can’t get an array
I’m trying to get a value inside an array, but it doesn’t print out anything from the id field, which is the field I want to pick up $jsonc =…
-
-1
votes2
answers5450
viewsQ: How to run . mkv files in all browsers?
I’m trying to run a video on .mkv in Firefox, however same error due to file extension. Is there any way to make the video work? <video> <source src="video.mkv" type="video/mp4">…
-
4
votes2
answers55
viewsA: How to build a includes system with $_GET
Make that friend <?php $pagina = $_GET['pagina']; if($pagina == "contato"){ include_once("Pages/contato.php"); }elseif($pagina == "outra"){ include_once("Pages/outra.php"); } ?>…
phpanswered Carlos da Silva 101 -
0
votes0
answers203
viewsQ: Jwplayer and Google direct link drive
I am making a system is arrived at a part I have to add a video that is in Google drive, I wonder if there is any way I can do such function using jwplayer or if there is a way to create a direct…
-
0
votes1
answer99
viewsQ: doubts about css action in div
Good guys I would like to know how I can make a div trigger the None display when I’m with Focus in the ex input code //CSS .email:focus > div.oculta{ display:none; } //HTML <div…
-
1
votes1
answer2846
viewsQ: How to translate dynamic texts with php?
Good Guys I’m wanting to translate a text with php but I can’t find a functional api. I tried to make it work this way <html> <head> <title>Teste</title> </head>…
-
0
votes1
answer561
viewsQ: Copying information from imdb
Good morning to everyone , well I’m creating an application in PHP and I need to get information from Imdb movies ,What better way to capture information from Imdb? Curl or there’s some api I can…
-
0
votes3
answers2646
viewsA: How to disable an input field?
For disable="disable" in input Ex: <input type="text" id="" name="" value="exemplo" disabled="disabled"/>
-
1
votes0
answers89
viewsQ: Simultaneous access
Is there any way to limit simultaneous access without using the database? Is there any way to do it using . htaccess? Because I am trying to limit access to a file that does not come in the PHP…