Ir para conteúdo
Fórum Script Brasil
  • 0

Ligação Sql E Php


Guest - Carla -

Pergunta

Não consigo visualizar os dados... é que nem seque erro dá?

alguém têm feito uma ligaçã PHP e SQL, se sim ajuda-me...

<?php

include ("./common.php");

$myServer = "localhost";

$myUser = "sa";

$myPass = "12458741";

$myDB = "BD_exp";

$s = @mssql_connect($myServer, $myUser, $myPass)

or die("Couldn't connect to SQL Server on $myServer");

$d = @mssql_select_db($myDB, $s)

or die("Couldn't open database $myDB");

$query = "SELECT Id+' '+Nome+' '+LastName AS Clientes ";

$query .= "FROM Clientes";

$result = mssql_query($query);

$numRows = mssql_num_rows($result);

echo ($result);

echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";

while($row = mssql_fetch_array($result))

{

echo "<li>" . $row["Clientes"] . "</li>";

}

?>

Cumpt.

Obrigada

Link para o comentário
Compartilhar em outros sites

5 respostass a esta questão

Posts Recomendados

  • 0

biggrin.gif OLa tudo bem...

neste casso você esta escrevendo de maneira errada a varial já prescrita pelo PHP ... não é

MSSQL.... e sim 'Mysql' tipo

"o errado que você digitou"

[FONT=Arial][FONT=Arial][SIZE=7][SIZE=1]<?php 
include ("./common.php");

$myServer = "localhost"; 
$myUser = "sa"; 
$myPass = "12458741"; 
$myDB = "BD_exp"; 


$s = @mssql_connect($myServer, $myUser, $myPass) 
or die("Couldn't connect to SQL Server on $myServer"); 

$d = @mssql_select_db($myDB, $s) 
or die("Couldn't open database $myDB"); 

$query = "SELECT Id+' '+Nome+' '+LastName AS Clientes "; 
$query .= "FROM Clientes"; 
$result = mssql_query($query); 
$numRows = mssql_num_rows($result); 

echo ($result);

echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>"; 

while($row = mssql_fetch_array($result)) 
{ 
echo "<li>" . $row["Clientes"] . "</li>"; 
} 

?> 

eo correto é

<?php

include ("./common.php");

$myServer = "localhost";

$myUser = "sa";

$myPass = "12458741";

$myDB = "BD_exp";

$s = @mysql_connect($myServer, $myUser, $myPass)

or die("Couldn't connect to SQL Server on $myServer");

$d = @mysql_select_db($myDB, $s)

or die("Couldn't open database $myDB");

$query = "SELECT Id+' '+Nome+' '+LastName AS Clientes ";

$query .= "FROM Clientes";

$result = mysql_query($query);

$numRows = mysql_num_rows($result);

echo ($result);

echo "<h1>" . $numRows . " Row" . ($numRows == 1 ? "" : "s") . " Returned </h1>";

while($row = mysql_fetch_array($result))

{

echo "<li>" . $row["Clientes"] . "</li>";

}

?>

de cara... o erro é esse.... mais na duvida pode postar ... tenho certeza de tera muita genta a lhe ajudar...

biggrin.gif "UM Otimo final de Ano e um Ano novo 'show' pra todos vc" biggrin.gif

Link para o comentário
Compartilhar em outros sites

  • 0

Não dá erro, simplesmente não mostra nenhuma informação:

Vou-te emviar os ficheiros para ver se vês algum problema:

Clientes.html

---

<html>

<head>

<title>Code</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head>

<body >

{Header}

<table>

<tr>

<td valign="top">

<!--BeginFormClientesHeader-->

<!--EndFormClientesHeader-->

<!--BeginFormClientes--><table >

<tr>

<td colspan="3"><a name="Clientes"><font >{FormTitle}</font></a></td>

</tr>

<tr>

<td ><font >Nome</font></td>

<td ><font >Idade</font></td>

<td ><font >Morada</font></td>

</tr>

<!--BeginDListClientes-->

<tr>

<td ><font >{Nome}&nbsp;</font></td>

<td ><font >{Idade}&nbsp;</font></td>

<td ><font >{Morada}&nbsp;</font></td>

</tr>

<!--EndDListClientes-->

<!--BeginClientesNoRecords-->

<tr><td colspan="3" ><font >Nenhuns Registos</font></td></tr>

<!--EndClientesNoRecords-->

</table>

<!--EndFormClientes-->

<!--BeginFormClientesFooter-->

<!--EndFormClientesFooter-->

</td>

</tr>

</table>

{Footer}

</body>

</html>

----

Clientes.php

----

<?php

include ("./common.php");

session_start();

$filename = "ClientesGrid.php";

$template_filename = "ClientesGrid.html";

$sAction = get_param("FormAction");

$sForm = get_param("FormName");

$tpl = new Template($app_path);

$tpl->load_file($template_filename, "main");

$tpl->set_var("FileName", $filename);

Clientes_show();

$tpl->pparse("main", false);

function Clientes_show()

{

global $tpl;

global $db;

global $sClientesErr;

$sWhere = "";

$sOrder = "";

$sSQL = "";

$sFormTitle = "Clientes";

$HasParam = false;

$tpl->set_var("TransitParams", "");

$tpl->set_var("FormParams", "");

$sSQL = "select C.Id as C_Id, " .

"C.Idade as C_Idade, " .

"C.Morada as C_Morada, " .

"C.Nome as C_Nome " .

" from Clientes C ";

$sSQL .= $sWhere . $sOrder;

$tpl->set_var("FormTitle", $sFormTitle);

$db->query($sSQL);

$next_record = $db->next_record();

echo $db;

if(!$next_record)

{

$tpl->set_var("DListClientes", "");

$tpl->parse("ClientesNoRecords", false);

$tpl->parse("FormClientes", false);

return;

}

while($next_record )

{

$fldId = $db->f("C_Id");

$fldIdade = $db->f("C_Idade");

$fldMorada = $db->f("C_Morada");

$fldNome = $db->f("C_Nome");

echo $fldNome;

$next_record = $db->next_record();

$tpl->set_var("Id", tohtml($fldId));

$tpl->set_var("Nome", tohtml($fldNome));

$tpl->set_var("Idade", tohtml($fldIdade));

$tpl->set_var("Morada", tohtml($fldMorada));

echo $tp1;

$tpl->parse("DListClientes", true);

}

$tpl->set_var( "ClientesNoRecords", "");

$tpl->parse( "FormClientes", false);

}

?>

-------------

db_mssql.php

--------

<?php

class DB_Sql {

var $Host = "";

var $Database = "";

var $User = "";

var $Password = "";

var $Link_ID = 0;

var $Query_ID = 0;

var $Record = array();

var $Row = 0;

var $Errno = 0;

var $Error = "";

var $Auto_Free = 0;

function DB_Sql($query = "") {

$this->query($query);

}

function connect() {

if ( 0 == $this->Link_ID ) {

$this->Link_ID=@mssql_pconnect($this->Host, $this->User, $this->Password);

if (!$this->Link_ID)

$this->halt("Link-ID == false, mssql_connect failed");

else

mssql_select_db($this->Database, $this->Link_ID);

}

}

function free_result(){

mssql_free_result($this->Query_ID);

$this->Query_ID = 0;

}

function query($Query_String)

{

if ($Query_String == "")

return 0;

$Query_String = str_replace("\\\\", "\\", $Query_String);

if (!$this->Link_ID)

$this->connect();

$this->Query_ID = mssql_query($Query_String, $this->Link_ID);

$this->Row = 0;

if (!$this->Query_ID) {

$this->Errno = 1;

$this->Error = "General Error (The MSSQL interface cannot return detailed error messages).";

$this->halt("Invalid SQL: ".$Query_String);

}

return $this->Query_ID;

}

function next_record() {

if ($this->Record = mssql_fetch_row($this->Query_ID)) {

$count = mssql_num_fields($this->Query_ID);

for ($i=0; $i<$count; $i++){

$fieldinfo = mssql_fetch_field($this->Query_ID,$i);

$this->Record[strtolower($fieldinfo->name)] = $this->Record[$i];

}

$this->Row += 1;

$stat = 1;

} else {

if ($this->Auto_Free) {

$this->free_result();

}

$stat = 0;

}

return $stat;

}

function seek($pos) {

mssql_data_seek($this->Query_ID,$pos);

$this->Row = $pos;

}

function metadata($table) {

$count = 0;

$id = 0;

$res = array();

$this->connect();

$id = mssql_query("select * from $table", $this->Link_ID);

if (!$id) {

$this->Errno = 1;

$this->Error = "General Error (The MSSQL interface cannot return detailed error messages).";

$this->halt("Metadata query failed.");

}

$count = mssql_num_fields($id);

for ($i=0; $i<$count; $i++) {

$info = mssql_fetch_field($id, $i);

$res[$i]["table"] = $table;

$res[$i]["name"] = $info["name"];

$res[$i]["len"] = $info["max_length"];

$res[$i]["flags"] = $info["numeric"];

}

$this->free_result();

return $res;

}

function affected_rows() {

return mssql_affected_rows($this->Query_ID);

}

function num_rows() {

return mssql_num_rows($this->Query_ID);

}

function num_fields() {

return mssql_num_fields($this->Query_ID);

}

function nf() {

return $this->num_rows();

}

function np() {

print $this->num_rows();

}

function f($Field_Name) {

return $this->Record[strtolower($Field_Name)];

}

function p($Field_Name) {

print $this->f($Field_Name);

}

function halt($msg) {

printf("</td></tr></table><b>Database error:</b> %s<br>\n", $msg);

printf("<b>MSSQL Error</b>: %s (%s)<br>\n",

$this->Errno,

$this->Error);

die("Session halted.");

}

}

?>

----

comom.asp

-----

<?php

error_reporting (E_ALL ^ E_NOTICE);

include("./template.php");

include("./db_mssql.php");

define("DATABASE_NAME","BD_exp");

define("DATABASE_USER","sa");

define("DATABASE_PASSWORD","4582875");

define("DATABASE_HOST","192.100.4.210");

$db = new DB_Sql();

$db->Database = DATABASE_NAME;

$db->User = DATABASE_USER;

$db->Password = DATABASE_PASSWORD;

$db->Host = DATABASE_HOST;

$app_path = ".";

function tohtml($strValue)

{

return htmlspecialchars($strValue);

}

function tourl($strValue)

{

return urlencode($strValue);

}

function get_param($param_name)

{

global $HTTP_POST_VARS;

global $HTTP_GET_VARS;

$param_value = "";

if(isset($HTTP_POST_VARS[$param_name]))

$param_value = $HTTP_POST_VARS[$param_name];

else if(isset($HTTP_GET_VARS[$param_name]))

$param_value = $HTTP_GET_VARS[$param_name];

return $param_value;

}

function get_session($parameter_name)

{

global $HTTP_SESSION_VARS;

return isset($HTTP_SESSION_VARS[$parameter_name]) ? $HTTP_SESSION_VARS[$parameter_name] : "";

}

function set_session($parameter_name, $parameter_value)

{

global $HTTP_SESSION_VARS;

global ${$parameter_name};

if(session_is_registered($parameter_name)) {

session_unregister($paramet

Link para o comentário
Compartilhar em outros sites

Participe da discussão

Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.



  • Estatísticas dos Fóruns

    • Tópicos
      152,3k
    • Posts
      652,6k
×
×
  • Criar Novo...