Serial do Help & Manual
Ótimo software para fazer manual
http://www.helpandmanual.com/
Help & Manual v4.3.0.1138
Serial Number HM4-6X6TMQ-YL5L-866CF5
Security Code SC2358
quarta-feira, 28 de novembro de 2012
quarta-feira, 21 de novembro de 2012
Etiqueta com FastReport Fr3
Criar etiquetas de endereçamento com FastReport3
1)
Criar Etiqueta no Fast Report
Colocar ReportTitle
MasterData
Shape: skRoundRectangle
Coloque os dados para gerar a etiqueta ( nome, endereco,bairro)
Se quiser usar pronomes de tratamento é só colocar um [Edit1.Text] e depois associa-los.
Frame Color : clSilver
Em Columns coloque := 2
ColumnWidth:= 9,50
ParentFont:= False
2)
Criar um Dialog Page com pronomes de tratamento
Click em DialogPage
Coloque o radiobutton
Em caption coloque as atribuições
Coloque um button
3)
Depois em code faça as associações:
procedure RadioButton1OnClick(Sender: TfrxComponent);
begin
if (RadioButton1.Checked)then
Memo14.Text:= 'Sr.º';
end;
procedure RadioButton2OnClick(Sender: TfrxComponent);
begin
if (RadioButton2.Checked)then
Memo14.Text:= 'Sr.ª';
end;
procedure RadioButton3OnClick(Sender: TfrxComponent);
begin
if (RadioButton3.Checked)then
Memo14.Text:= 'V.S.ª';
end;
1)
Criar Etiqueta no Fast Report
Colocar ReportTitle
MasterData
Shape: skRoundRectangle
Coloque os dados para gerar a etiqueta ( nome, endereco,bairro)
Se quiser usar pronomes de tratamento é só colocar um [Edit1.Text] e depois associa-los.
Frame Color : clSilver
Em Columns coloque := 2
ColumnWidth:= 9,50
ParentFont:= False
2)
Criar um Dialog Page com pronomes de tratamento
Click em DialogPage
Coloque o radiobutton
Em caption coloque as atribuições
Coloque um button
3)
Depois em code faça as associações:
procedure RadioButton1OnClick(Sender: TfrxComponent);
begin
if (RadioButton1.Checked)then
Memo14.Text:= 'Sr.º';
end;
procedure RadioButton2OnClick(Sender: TfrxComponent);
begin
if (RadioButton2.Checked)then
Memo14.Text:= 'Sr.ª';
end;
procedure RadioButton3OnClick(Sender: TfrxComponent);
begin
if (RadioButton3.Checked)then
Memo14.Text:= 'V.S.ª';
end;
quinta-feira, 8 de novembro de 2012
PrettyPhoto pegando imagens no Mysql
<html>
<head>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" charset="utf-8" />
</head>
<?php
$tamanhoPagina = 13;
$numLinks = 1;
$page = (int) $_GET['page'];
if (!$page) {
$inicio = 0;
$page=1;
}
else {
$inicio = ($page - 1) * $tamanhoPagina;
}
$sql = "select date_format(data,'%d/%m/%y')as data,numero,evento,linkimagem,link from dallas order by numero desc";
$query1=mysql_query($sql);
$total=mysql_num_rows($query1);
$numRegistros = $total;
$total_paginas = ceil($numRegistros / $tamanhoPagina);
$limit = " $inicio, $tamanhoPagina";
if($total>0){
$sql .= " limit ".$limit;
$query=mysql_query($sql);
//include('');
$fabrica = new fabrica();
$P = $fabrica->load_lib("paginator", "");
$P->totalRegistros = $numRegistros;
$P->limit = $tamanhoPagina;
$P->urlBusca = "secao=eventos";
?>
<table cellpadding="1" cellspacing="1" class="tahoma11azulb" style="width:530px;border:solid 1px #fff;">
<tr style="background-color:#079dcf">
<td height="5" class="tahoma11brancob"><div align="center">Data</div></td>
<td class="tahoma11brancob"><div align="center">Número</div></td>
<td class="tahoma11brancob"><div align="center">Miniatura</div></td>
<td class="tahoma11brancob"><div align="center">Eventos</div></td>
</tr>
<?
$i=0;
while($linha=mysql_fetch_array($query)){
?>
<tr style="border:1px solid red;background-color:<?=($i==1 or $i%2)?"#ecf6fc;":"#fff"?>">
<td valign="top"><p style="text-align:center"><?=utf8_encode($linha['data']);?></p></td>
<td valign="top"><p style="text-align:center"><?=$linha['numero']?></p></td>
<td valign="top"><p style="align:center"><img src=<?=$linha['linkimagem']?>></img></p></td>
<td valign="top"><p style="text-align:center"><?=($linha['evento']);?><br>
<?
$imgc = 1;
$images=glob(".$linha[link]{*.jpg,*.png,*.gif,*.bmp}", GLOB_BRACE);
echo "Fotos ";
foreach($images as $image) { ?><a href="<?=$image;?>" rel="prettyPhoto[galeria_<? echo $i; ?>]"><? echo $imgc . " | "; $imgc++; ?></a><? } ?>
</p></td>
</tr>
<tr style="border-bottom:10px solid; background-color:<?=($i== 1 or $i % 2)?"#ecf6fc;":"#fff"?>">
<td valign="top" style="font-weight:normal;" colspan="4"><p style="margin:6px;"><?=($linha['html'])?></p></td>
</tr>
<tr style="margin:0px;padding:0px;background:#079dcf;">
<td colspan="4" height="0px"></td>
</tr>
<?
$i++;
}
?>
</table>
<?php
if($total_paginas>1){ $P->show();}
}
else{
echo NaoExiste('Ainda não existem históricos cadastrados!','img/naoexiste.png','100');
}
?>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
<div style="clear:left"></div>
</html>
<head>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script src="js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
<link rel="stylesheet" href="css/prettyPhoto.css" type="text/css" charset="utf-8" />
</head>
<?php
$tamanhoPagina = 13;
$numLinks = 1;
$page = (int) $_GET['page'];
if (!$page) {
$inicio = 0;
$page=1;
}
else {
$inicio = ($page - 1) * $tamanhoPagina;
}
$sql = "select date_format(data,'%d/%m/%y')as data,numero,evento,linkimagem,link from dallas order by numero desc";
$query1=mysql_query($sql);
$total=mysql_num_rows($query1);
$numRegistros = $total;
$total_paginas = ceil($numRegistros / $tamanhoPagina);
$limit = " $inicio, $tamanhoPagina";
if($total>0){
$sql .= " limit ".$limit;
$query=mysql_query($sql);
//include('');
$fabrica = new fabrica();
$P = $fabrica->load_lib("paginator", "");
$P->totalRegistros = $numRegistros;
$P->limit = $tamanhoPagina;
$P->urlBusca = "secao=eventos";
?>
<table cellpadding="1" cellspacing="1" class="tahoma11azulb" style="width:530px;border:solid 1px #fff;">
<tr style="background-color:#079dcf">
<td height="5" class="tahoma11brancob"><div align="center">Data</div></td>
<td class="tahoma11brancob"><div align="center">Número</div></td>
<td class="tahoma11brancob"><div align="center">Miniatura</div></td>
<td class="tahoma11brancob"><div align="center">Eventos</div></td>
</tr>
<?
$i=0;
while($linha=mysql_fetch_array($query)){
?>
<tr style="border:1px solid red;background-color:<?=($i==1 or $i%2)?"#ecf6fc;":"#fff"?>">
<td valign="top"><p style="text-align:center"><?=utf8_encode($linha['data']);?></p></td>
<td valign="top"><p style="text-align:center"><?=$linha['numero']?></p></td>
<td valign="top"><p style="align:center"><img src=<?=$linha['linkimagem']?>></img></p></td>
<td valign="top"><p style="text-align:center"><?=($linha['evento']);?><br>
<?
$imgc = 1;
$images=glob(".$linha[link]{*.jpg,*.png,*.gif,*.bmp}", GLOB_BRACE);
echo "Fotos ";
foreach($images as $image) { ?><a href="<?=$image;?>" rel="prettyPhoto[galeria_<? echo $i; ?>]"><? echo $imgc . " | "; $imgc++; ?></a><? } ?>
</p></td>
</tr>
<tr style="border-bottom:10px solid; background-color:<?=($i== 1 or $i % 2)?"#ecf6fc;":"#fff"?>">
<td valign="top" style="font-weight:normal;" colspan="4"><p style="margin:6px;"><?=($linha['html'])?></p></td>
</tr>
<tr style="margin:0px;padding:0px;background:#079dcf;">
<td colspan="4" height="0px"></td>
</tr>
<?
$i++;
}
?>
</table>
<?php
if($total_paginas>1){ $P->show();}
}
else{
echo NaoExiste('Ainda não existem históricos cadastrados!','img/naoexiste.png','100');
}
?>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
<div style="clear:left"></div>
</html>
quinta-feira, 1 de novembro de 2012
Marcando Coordenadas no Mapa com area shape poly
Olá Gente estava com um grande problema em <? php
Era o seguinte tinha um mapa e querias saber as coordenadas dele, depois de quebrar a cabeça achei um código de um colega na internet que ensinava.
http://blogdofabiolima.blogspot.com/2009/01/mapeamento-de-imagens-em-html.html
Segue o código e o mapa;
<html>
<head>
<script type="text/javascript">
function coordenadas(event)
{
var x=event.clientX;
var y=event.clientY;
var coord = x + "," + y;
return coord;
}
function listar(event){
var coord = coordenadas(event);
var texto = document.getElementById("listacoord");
texto.value += coord + ",";
}
</script>
</head>
<body>
<!-- AQUI VOCE COLOCA O ENDERECO DA IMAGEM QUE QUER MAPEAR -->
<!-- SUBSTITUA "IMAGEM.JPG" PELA SUA IMAGEM -->
<div align="center">
<img src="mapa_brasil.jpg" width="390" height="369" border="0" usemap="#Map3"style="border-style:none;position:absolute;top:0px;left:0px" onmousedown="listar(event)">
</div>
<p style="position:absolute;top:400px;">Clique na imagem para marcar as coordenadas.<br/>
Copie estas coordenadas e cole dentro no atributo coords="" da tag <AREA>.<br/>
Não esqueça de apagar a vírgula no final do da linha gerada.</p>
<textarea type="text" style="position:relative;top:500px;" id="listacoord" cols="100" rows="8"></textarea>
</body>
</html>
Depois surgiu um outro problema, como pegar as informações no banco de dados e colocar em cada estado correspondente?
Segue o código....
<html>
<body>
<div id="contents">
<div id="main">
<?
$sql="select * from homologacaobrasil";
$query=mysql_query($sql);
$total=mysql_num_rows($query);
?>
<div id="tit_pagina">
<p class="tahoma14azulb" style="margin-left:15px">Homologações</p>
</div>
<div id="corpo_pagina">
<div id="texto" class="tahoma11preto" align="justify">
<p><span class="tahoma11preto">Disponibilizamos aqui as homologações dos módulos separado por estado.</span></p>
</div><br />
<div align="center">
<img src="img/estados-homologados.jpg" style="position:relative;border-style:none;" width="400" height="352" usemap="#Map3"/>
</div>
<map name="Map3">
<?
$i=0;
while($linha=mysql_fetch_array($query)){
?>
<? if ($linha['recno']=='1'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="267,157,308,157,309,173,266,169" title="Bahia" alt="Ba" />
<? } ?>
<? if ($linha['recno']=='2'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="152,216,186,218,186,252,152,252" title="Mato Grosso do Sul" alt="MS" />
<? } ?>
<? if ($linha['recno']=='3'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="81,14,130,15,130,27,79,24" title="Roraima" alt="RR"/>
<? } ?>
<? if ($linha['recno']=='4'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="49,91,128,91,125,100,53,99" title="Amazonas" alt="AM" />
<? } ?>
<? if ($linha['recno']=='5'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="201,201,224,202,225,209,199,209" title="Goias" alt="GO" />
<? } ?>
<? if ($linha['recno']=='6'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="13,135,44,136,44,145,11,145" title="Acre" alt="AC" />
<? } ?>
<? if ($linha['recno']=='7'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="331,139,367,140,332,145,365,144" title="Alagoas" alt="AL" />
<? } ?>
<? if ($linha['recno']=='8'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="312,83,335,94,335,102,325,124,312,106" title="Ceará" alt="CE" />
<? } ?>
<? if ($linha['recno']=='9'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="232,193,237,194,232,196,238,196" title="Distrito Federal" alt="DF" />
<? } ?>
<? if ($linha['recno']=='10'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="297,229,356,227,295,232,359,237" title="Espirito Santo" alt="ES" />
<? } ?>
<? if ($linha['recno']=='11'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords= "259,65,241,100,258,142,284,109,288,74" title="Maranhao"alt="MA">
<? } ?>
<? if ($linha['recno']=='12'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="248,214,276,214,248,220,276,220" title="Minas Gerais" alt="MG">
<? } ?>
<? if ($linha['recno']=='13'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="166,87,208,88,208,105,161,103" title="Para" alt="PA">
<? } ?>
<? if ($linha['recno']=='14'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="337,114,366,115,338,119,363,119" title="Paraiba" alt="PB">
<? } ?>
<? if ($linha['recno']=='15'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="328,128,389,128,326,132,389,133" title="Pernambuco" alt="PE">
<? } ?>
<? if ($linha['recno']=='16'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="334,95,359,96,328,102,362,104" title="Rio Grande do Norte" alt="RN">
<? } ?>
<? if ($linha['recno']=='17'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="170,215,155,219,155,255,182,272,202,244,202,228,186,216" title="Rio Grande do Sul" alt="RS">
<? } ?>
<? if ($linha['recno']=='18'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="136,225,135,227,148,229,162,240,167,233,166,219,151,224,134,224" title="Santa Catarina" alt="SC">
<? } ?>
<? if ($linha['recno']=='19'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="206,239,233,244,211,259,234,272" title="Sao Paulo" alt="SP">
<? } ?>
<? if ($linha['recno']=='20'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="329,152,358,151,327,154,358,154" title="Sergipe" alt="SE">
<? } ?>
<?
$i++;
}
?>
</map>
</div></div>
</html>
Era o seguinte tinha um mapa e querias saber as coordenadas dele, depois de quebrar a cabeça achei um código de um colega na internet que ensinava.
http://blogdofabiolima.blogspot.com/2009/01/mapeamento-de-imagens-em-html.html
Segue o código e o mapa;
<html>
<head>
<script type="text/javascript">
function coordenadas(event)
{
var x=event.clientX;
var y=event.clientY;
var coord = x + "," + y;
return coord;
}
function listar(event){
var coord = coordenadas(event);
var texto = document.getElementById("listacoord");
texto.value += coord + ",";
}
</script>
</head>
<body>
<!-- AQUI VOCE COLOCA O ENDERECO DA IMAGEM QUE QUER MAPEAR -->
<!-- SUBSTITUA "IMAGEM.JPG" PELA SUA IMAGEM -->
<div align="center">
<img src="mapa_brasil.jpg" width="390" height="369" border="0" usemap="#Map3"style="border-style:none;position:absolute;top:0px;left:0px" onmousedown="listar(event)">
</div>
<p style="position:absolute;top:400px;">Clique na imagem para marcar as coordenadas.<br/>
Copie estas coordenadas e cole dentro no atributo coords="" da tag <AREA>.<br/>
Não esqueça de apagar a vírgula no final do da linha gerada.</p>
<textarea type="text" style="position:relative;top:500px;" id="listacoord" cols="100" rows="8"></textarea>
</body>
</html>
Depois surgiu um outro problema, como pegar as informações no banco de dados e colocar em cada estado correspondente?
Segue o código....
<html>
<body>
<div id="contents">
<div id="main">
<?
$sql="select * from homologacaobrasil";
$query=mysql_query($sql);
$total=mysql_num_rows($query);
?>
<div id="tit_pagina">
<p class="tahoma14azulb" style="margin-left:15px">Homologações</p>
</div>
<div id="corpo_pagina">
<div id="texto" class="tahoma11preto" align="justify">
<p><span class="tahoma11preto">Disponibilizamos aqui as homologações dos módulos separado por estado.</span></p>
</div><br />
<div align="center">
<img src="img/estados-homologados.jpg" style="position:relative;border-style:none;" width="400" height="352" usemap="#Map3"/>
</div>
<map name="Map3">
<?
$i=0;
while($linha=mysql_fetch_array($query)){
?>
<? if ($linha['recno']=='1'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="267,157,308,157,309,173,266,169" title="Bahia" alt="Ba" />
<? } ?>
<? if ($linha['recno']=='2'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="152,216,186,218,186,252,152,252" title="Mato Grosso do Sul" alt="MS" />
<? } ?>
<? if ($linha['recno']=='3'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="81,14,130,15,130,27,79,24" title="Roraima" alt="RR"/>
<? } ?>
<? if ($linha['recno']=='4'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="49,91,128,91,125,100,53,99" title="Amazonas" alt="AM" />
<? } ?>
<? if ($linha['recno']=='5'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="201,201,224,202,225,209,199,209" title="Goias" alt="GO" />
<? } ?>
<? if ($linha['recno']=='6'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="13,135,44,136,44,145,11,145" title="Acre" alt="AC" />
<? } ?>
<? if ($linha['recno']=='7'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="331,139,367,140,332,145,365,144" title="Alagoas" alt="AL" />
<? } ?>
<? if ($linha['recno']=='8'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="312,83,335,94,335,102,325,124,312,106" title="Ceará" alt="CE" />
<? } ?>
<? if ($linha['recno']=='9'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="232,193,237,194,232,196,238,196" title="Distrito Federal" alt="DF" />
<? } ?>
<? if ($linha['recno']=='10'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="297,229,356,227,295,232,359,237" title="Espirito Santo" alt="ES" />
<? } ?>
<? if ($linha['recno']=='11'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords= "259,65,241,100,258,142,284,109,288,74" title="Maranhao"alt="MA">
<? } ?>
<? if ($linha['recno']=='12'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="248,214,276,214,248,220,276,220" title="Minas Gerais" alt="MG">
<? } ?>
<? if ($linha['recno']=='13'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="166,87,208,88,208,105,161,103" title="Para" alt="PA">
<? } ?>
<? if ($linha['recno']=='14'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="337,114,366,115,338,119,363,119" title="Paraiba" alt="PB">
<? } ?>
<? if ($linha['recno']=='15'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="328,128,389,128,326,132,389,133" title="Pernambuco" alt="PE">
<? } ?>
<? if ($linha['recno']=='16'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="334,95,359,96,328,102,362,104" title="Rio Grande do Norte" alt="RN">
<? } ?>
<? if ($linha['recno']=='17'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="170,215,155,219,155,255,182,272,202,244,202,228,186,216" title="Rio Grande do Sul" alt="RS">
<? } ?>
<? if ($linha['recno']=='18'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="136,225,135,227,148,229,162,240,167,233,166,219,151,224,134,224" title="Santa Catarina" alt="SC">
<? } ?>
<? if ($linha['recno']=='19'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="206,239,233,244,211,259,234,272" title="Sao Paulo" alt="SP">
<? } ?>
<? if ($linha['recno']=='20'){ ?> <area shape="poly" href="javascript:alert('<?php echo addslashes($linha['estado'] ." [". $linha['descricao']. "]"); ?>')" coords="329,152,358,151,327,154,358,154" title="Sergipe" alt="SE">
<? } ?>
<?
$i++;
}
?>
</map>
</div></div>
</html>
Assinar:
Postagens (Atom)