voy a colocarlo por partes:
Código PHP:
Ver original<?php
include "conexion.php";
//esta es mi conexion a la bd, funciona sin problemas
?>
<html>
<head>
<script src="ajax.js">
//este script es uno como los que hay en internet, está funcional
</script>
<script>
function myFunction(str)
{
loadDoc("q="+str,"proc.php",function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
});
}
function myFunction2(str)
{
loadDoc("r="+str,"proc22.php",function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv2").innerHTML=xmlhttp.responseText;
}
});
}
</script>
</head>
<body>
<h2>- PRUEBA - </h2>
// aqui debe venir la siguiente parte