Hola a todos, estoy intentando enviar variables php pero me sale error variable undefined. Estoy intentando enviar la variable TUC
Este es mi codigo php:
<a href="#" data-target="#modalHistorial" class="btn-edit" data-toggle="modal" data-code='<?php echo $prod_code;?>' data-name="<?php echo $prod_name?>" data-category="<?php echo $prod_ctry?>" data-stock="<?php echo $prod_qty?>" data-price="<?php echo $price;?>" data-tuc="'<?php echo $tuc?>'"><i style="color: #46A2BD" class="material-icons" data-toggle="tooltip" title="Historial" >chat</i></a>
Estoy enviando variables con jquery:
$(document).ready(function(){
$('#modalHistorial').on('show.bs.modal', function (e) {
var rowid = $(e.relatedTarget).data('tuc');
$.ajax({
type : 'post',
url : 'html/modal_historial.php',
data : 'rowid='+ rowid
});
});
});
En mi modal:
<?php
include ("conexion.php");
$id=$_POST["rowid"]; // Aqui recogo el post, pero me da el error variable undefined
$query5 = "SELECT * FROM detallegestion ORDER BY fecha_gestion DESC";
$querycont = mysqli_query($con,$query5);
?>
<div id="modalHistorial" class="modal fade" role="dialog" aria-labelledby="ModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<!-- Modal Content -->
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="text-info">Listado de gestiones</h3>
</div>
<div class="modal-body">
<div class="col-md-12 s">
<div class="row" style="padding: 0 0 0 0">
<div class="panel panel-info">
<div class="panel-body" style="padding: 0 0 0 0">
<div class="col-md-12">
<?php
if (mysqli_num_rows($querycont)>0) {
?>
<div class="table-responsive">
<table class="table table-hover">
<thead class="text-primary">
<th style="width: 15%; text-align: center;">Fecha</th>
<th style="text-align: center;">Comentarios</th>
<th style="text-align: center;">Acción</th>
</thead>
<tbody>........................
Estoy enviando la variable pero me sale error de variable undefined. Me podrian ayudar?