Help: Student Attendance Management in Joomla

This forum is for general questions about extensions for Joomla! 2.5.

Moderators: pe7er, General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
aryans14
Joomla! Apprentice
Joomla! Apprentice
Posts: 43
Joined: Sun Jul 15, 2012 7:34 pm

Help: Student Attendance Management in Joomla

Post by aryans14 » Sun Jul 15, 2012 7:39 pm

I have created a website for my College and want to have free module that allows teacher to mark attendance and allow students to view it and it creates attendance reports as well.

Please experts help me.

fleischwolf
Joomla! Explorer
Joomla! Explorer
Posts: 449
Joined: Thu Sep 30, 2010 2:29 am
Location: Europe

Re: Help: Student Attendance Management in Joomla

Post by fleischwolf » Sun Jul 15, 2012 8:06 pm

Hi aryans14 and welcome to the forum!

It sounds like, for instance, Fabrik could help you out here -> http://fabrikar.com/.
Regards, fw.
Problem solved? Please add [SOLVED] to the thread title! -> http://forum.joomla.org/viewtopic.php?f=432&t=509319

aryans14
Joomla! Apprentice
Joomla! Apprentice
Posts: 43
Joined: Sun Jul 15, 2012 7:34 pm

Re: Help: Student Attendance Management in Joomla

Post by aryans14 » Sun Jul 15, 2012 9:02 pm

I tried that already. It fails to install. Moreover i dont know that how to work in fabrik

fleischwolf
Joomla! Explorer
Joomla! Explorer
Posts: 449
Joined: Thu Sep 30, 2010 2:29 am
Location: Europe

Re: Help: Student Attendance Management in Joomla

Post by fleischwolf » Sun Jul 15, 2012 9:17 pm

aryans14 wrote:It fails to install.
What was the error message?
aryans14 wrote:Moreover i dont know that how to work in fabrik
Then you should look for another component that suits your needs in the JED -> http://extensions.joomla.org/. However, without diving into the particulars of how a specific component works you will find it very difficult to achieve your goal.
Regards, fw.
Problem solved? Please add [SOLVED] to the thread title! -> http://forum.joomla.org/viewtopic.php?f=432&t=509319

aryans14
Joomla! Apprentice
Joomla! Apprentice
Posts: 43
Joined: Sun Jul 15, 2012 7:34 pm

Re: Help: Student Attendance Management in Joomla

Post by aryans14 » Wed Jul 18, 2012 8:17 am

fabric is installed and ok now.
But i dont know how to create forms and work on it.
I have attendence lists of stdnts. Just teacher have to log in and mark chacks on attendance of student who were present. And student must be able to view it.

aryans14
Joomla! Apprentice
Joomla! Apprentice
Posts: 43
Joined: Sun Jul 15, 2012 7:34 pm

Re: Help: Student Attendance Management in Joomla

Post by aryans14 » Sat Aug 04, 2012 8:15 pm

Please help me experts. Where are you.Where is Joomla Support!!!!

waqas07
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Tue May 17, 2016 6:58 pm

Re: Help: Student Attendance Management in Joomla

Post by waqas07 » Mon Jun 06, 2016 3:59 pm

i am developing student management system in joomla it will be available in next 10 days. if you want to build your own module i will refer you component builder tool which is v.easy and effective

waqas07
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Tue May 17, 2016 6:58 pm

Re: Help: Student Attendance Management in Joomla

Post by waqas07 » Sun Jul 24, 2016 9:11 am

I created this script and i think its fullfill your initial requirements for attendance.
you can use this scripts in sorcerer joomla and then you can create table and columns as in script or you can change by ur requirements. jquery with php and sql.

waqas07
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Tue May 17, 2016 6:58 pm

Re: Help: Student Attendance Management in Joomla

Post by waqas07 » Sun Jul 24, 2016 9:12 am

here are scripts


jquery_post.php

<?php

//DataWriter

if($_POST["name"])
{

$name = $_POST["name"];
$class = $_POST["class"];
$present = $_POST["present"];

insertAttendance($name, $class, $present);

echo "Welcome ". $name ."!"; // Success Message
}

if ( isset($_SESSION['count']) ){
echo $_SESSION['count'];
}



function insertAttendance($student_name, $student_class, $student_present) {

$mysqli = new mysqli('localhost', 'root', '', 'hrc');

/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}

$stmt = $mysqli->prepare(" INSERT INTO Attendance(name, class, present) VALUES (?, ?, ?) ");
$stmt->bind_param("sss", $student_name, $student_class, $student_present);


/* execute prepared statement */
$stmt->execute();

/* close statement and connection */
$stmt->close();

/* close connection */
$mysqli->close();
}

waqas07
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Tue May 17, 2016 6:58 pm

Re: Help: Student Attendance Management in Joomla

Post by waqas07 » Sun Jul 24, 2016 9:13 am

jquery_send.php

<?php

$mysqli = new mysqli("localhost", "root", "", "hrc");

/* check connection */
if ($mysqli->connect_errno) {
printf("Connect failed: %s\n", $mysqli->connect_error);
exit();
}

$result = $mysqli->query("SELECT * FROM Attendance");

$mysqli->close();

?>

waqas07
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Tue May 17, 2016 6:58 pm

Re: Help: Student Attendance Management in Joomla

Post by waqas07 » Wed Jul 27, 2016 9:05 pm

fabrik is solution for that as well. list plugins will help you for attendance management system.


Locked

Return to “Extensions for Joomla! 2.5”