File Path: C:\wamp\bin\apa che\Apache2.2.1 1\conf
1. Remove the # before the line LoadModule rewrite_module modules/mod_rewrite.so. Earlier there was # in the front of this line as the line was under comment.
2.
Code:
<Directory
<Directory
<?php include_once "db_connect.inc.php";
<?php
include_once("db_connect.inc.php");
$query = "SELECT * FROM logintable";
$result = mysql_query($query) or die('Error, query failed');
$tsv = array();
$html
$fetch = mysql_query("SELECT c, count(*) as n_c from abusedetails GROUP BY salesPerson") or die(mysql_error());
if(isset($fetch)){
while($row = mysql_fetch_array($fetch) or die(mysql_error())){
echo $row['c']."=".$row['n_c']."<br>";
<?php
include("dbConfig.php");
if(isset($_POST['login'])){
$userid = $_POST['userid'];
$userpassword = $_POST['password'];
Leave a comment: