I would like to know how to get the information of a pdf file (binary, name, size)
public class Arqs: IHttpHandler
{
Funcoes f = new Funcoes();
public void ProcessRequest(HttpContext context)
{
try
{...
I'm developing an application and in it, I have a method of searching clients by name, right at the beginning, I collect basic information for each client.
Follow the code:
function atualizaGrid(){
if ($("#filtrar").val())
filtro = "/"...
In this code below I make a query in the address and it returns me some data so far everything is ok. What I wanted to know is?
If, like a customer, they enter an address in the United States
returns me an "Area Not Allowed" message
I want...
I have a JSON
{"content":{"description":"Descrição do meu site"}}
I wanted to populate the meta name description via javascript
<meta name="description" content="" />
I wonder if Google will read this information, otherwise what...
I have the following code:
<?php
session_start();
if(isset($_SESSION['logado'])==false){
echo("<script>window.location = 'login.php';</script>");
}
?>
<!DOCTYPE html>
<html>
<head&g...
I have the following file index.php that has 2 forms.
One of Login and one of registration
<?php
header("Content-Type: text/html; charset=utf-8");
/* Carrega as classes em tempo de execucao */
function __autoload($classe) {...
I'm trying to get the contact list from the phone and send it through ajax and php to mysql. This is the code I'm using:
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var options = new...
I'm doing an API with Slim Framework and when I test the answer with Postman everything works fine, however when I put it on the server and tried to make an ajax call to test I got the error below.
Failed to load link : Redirect from ' li...