ZoneLabs Privacy Insertion
yo estaba tranquilamente confeccionando una p谩gina en php para acceder a una base de datos en access cuando de repente todo el contenido de la tabla que estaba interrogando apareci贸 en mi navegador como por arte de magia, en modo de vista, como aparece en una tabla de access.
mirando en el c贸digo fuente all铆 est谩 la tabla con todos los datos, pero en mi fichero, el que yo tengo abierto con php edit, no hay m谩s que lo que yo hab铆a escrito, y de momento s贸lo hab铆a creado variables para dos campos (no para toda la tabla!!). y es por eso que no lo puedo eliminar, es "virtual" (solo aparece cuando se escoge la opci贸n "Page Source" en el navegador, pero no cuando se habre el fichero en modo edici贸n)
en el c贸digo fuente aparece
<!-- ZoneLabs Privacy Insertion -->
<script language='javascript' src='http://127.0.0.1:3004/js.cgi?pcaw&r=15890'></script>
tanto justo antes de la etiqueta </head> como despu茅s de </html>
esto es rar铆simo. como a todo el mundo, el ordenador me hace cosas raras de vez en cuando, y normalmente es culpa m铆a, pero esto es la repera
espero que alguien me pueda decir como me libro de esta cosa. muchas gracias por la molestia
mirando en el c贸digo fuente all铆 est谩 la tabla con todos los datos, pero en mi fichero, el que yo tengo abierto con php edit, no hay m谩s que lo que yo hab铆a escrito, y de momento s贸lo hab铆a creado variables para dos campos (no para toda la tabla!!). y es por eso que no lo puedo eliminar, es "virtual" (solo aparece cuando se escoge la opci贸n "Page Source" en el navegador, pero no cuando se habre el fichero en modo edici贸n)
en el c贸digo fuente aparece
<!-- ZoneLabs Privacy Insertion -->
<script language='javascript' src='http://127.0.0.1:3004/js.cgi?pcaw&r=15890'></script>
tanto justo antes de la etiqueta </head> como despu茅s de </html>
esto es rar铆simo. como a todo el mundo, el ordenador me hace cosas raras de vez en cuando, y normalmente es culpa m铆a, pero esto es la repera
espero que alguien me pueda decir como me libro de esta cosa. muchas gracias por la molestia
I´ve still have the same problem, but I´ve found found 2 things, which need me to explain what the code i´m writing is like roughly:
<?php
$conn=odbc_connect('bd','user','password');
if (!$conn) {
exit("Connection Failed: " . $conn);
}
$sql = "SELECT * FROM t_termino WHERE Champ = '865' ORDER BY CleFr";
$rs = odbc_exec($conn, $sql);
if (!$rs) {
exit("Error in SQL");
}
while (odbc_fetch_row($rs)) {
$field($rs,"field");
if (isset ($field)) {
echo $field;}
}?>
for instance:
$NoteTechniqueFr($rs,"NoteTechniqueFr");
if (isset ($NoteTechniqueFr)) {
echo $NoteTechniqueFr;
}
1. so the first thing i´ve found out is that the table only appears when 'field' is 'SourceNTFr' or 'SourceNLFr' or 'SourceNTEn' or 'SourceNLEn' or even, if i replace source with src, 'Src*'... but not 'SourceCleFr' !!
2. the script doesn´t seem to be directly related to the fact that the table containing all data from the db appears on my webpage. the script seems to be there all the time, but the table only appears in the abovementioned case.
hope this helps someone to help me :) thanks a lot really
<?php
$conn=odbc_connect('bd','user','password');
if (!$conn) {
exit("Connection Failed: " . $conn);
}
$sql = "SELECT * FROM t_termino WHERE Champ = '865' ORDER BY CleFr";
$rs = odbc_exec($conn, $sql);
if (!$rs) {
exit("Error in SQL");
}
while (odbc_fetch_row($rs)) {
$field($rs,"field");
if (isset ($field)) {
echo $field;}
}?>
for instance:
$NoteTechniqueFr($rs,"NoteTechniqueFr");
if (isset ($NoteTechniqueFr)) {
echo $NoteTechniqueFr;
}
1. so the first thing i´ve found out is that the table only appears when 'field' is 'SourceNTFr' or 'SourceNLFr' or 'SourceNTEn' or 'SourceNLEn' or even, if i replace source with src, 'Src*'... but not 'SourceCleFr' !!
2. the script doesn´t seem to be directly related to the fact that the table containing all data from the db appears on my webpage. the script seems to be there all the time, but the table only appears in the abovementioned case.
hope this helps someone to help me :) thanks a lot really