Jump to content
Fórum Script Brasil
  • 0

abrindo pagina php dentro da div


kid

Question

pessoal to tentando fazer um tooltip mostrando a pagina em php, tipo passa o mouse aparece a pagina, gostaria de uma ajuda já que só conigo ver a pagina, somente quando coloco toda a url, bem vou postar os codigos.

pagina em php:

<a <?php echo"href='ver.php?id=$var[id]'"; ?> onmouseover=abrirPag('ver.php?id=9');">ver</a> - assim aparece mas eu queria que estivesse assim: ver.php?id=$var[id] porque assim cada link puxado abriria seu propio link:

ele esta abrindo numa div:

<div id="conteudo_mostrar"></div>

vou postar os scripts:

ajax.js

function GetXMLHttp() {
if(navigator.appName == "Microsoft Internet Explorer") {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else {
xmlHttp = new XMLHttpRequest();
}
return xmlHttp;
}
var xmlRequest = GetXMLHttp();
instrucao.js
function abrirPag(valor){
var url = valor;

xmlRequest.open("GET",url,true);
xmlRequest.onreadystatechange = mostraPagina;
xmlRequest.send(null);

if (xmlRequest.readyState == 1) {
document.getElementById("conteudo_mostrar").innerHTML = "<img src='loader.gif'>";
}

return url;
}

function mostraPagina(){
if (xmlRequest.readyState == 4){
document.getElementById("conteudo_mostrar").innerHTML = xmlRequest.responseText;
}
}

bem é isso ai desde já agradeço.

conseguiiii

<a href="ver.php?id=<?php echo $var['id]; ?>" onmouseover="abrirPag('ver.php?id=<?php echo $var['id']; ?>');">ver</a>

AGORA VAI QUE VAI

Edited by kuroi
Adicionar tag CODE
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...