我有考勤管理系统,其中两个表出勤和员工。 在此系统中显示所有员工姓名的页面,并将其作为下面显示的超链接
<bean id="mqQueueConnectionFactory" class="com.ibm.mq.jms.MQQueueConnectionFactory">
<property name="hostName" value=""/>
<property name="port" value=""/>
<property name="channel" value=""/>
<property name="queueManager" value=""/>
<property name="transportType" value="1"/>
</bean>
但我想将employee_id发送到attendance_add.php页面。 那我怎么发送?
答案 0 :(得分:0)
您可以这样做:
<?php echo "<a href='attendance_add.php?id=".$row['employee_id']."'>" . $row['emp_name'] . "</a> "; ?>
然后您将从$_GET['id']
attendance_add.php
抓取来自网址的ID