๐Ÿ“ฆ NikithShetty / Interrupt6.0_server

๐Ÿ“„ eventsData.php ยท 13 lines
1
2
3
4
5
6
7
8
9
10
11
12
13<?php
	require_once('WEBHOST.php');
	require_once('DBCONNECT.php');

	$sql="SELECT * FROM events;";
	$result = mysqli_query($con,$sql);
	$array = array();
	while($row=mysqli_fetch_assoc($result)){
		$array[]=$row;
	}
	echo json_encode($array);
	exit(0);
?>