Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
14% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
7
Posts with Downvotes
5
Downvoting Members
4
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for zeeshan009

Hi All, I am new in php and i am creating an application of attendence management where i have mark 'present' or 'absent'. I can do listing with the last column of two radio button 'A' or 'P' , user will select and then finally press submit. Please tell how …

Member Avatar for gabrielcastillo
0
92
Member Avatar for zeeshan009

Hi All, I am new in PHP and MySQL. As of now i am building a web application , where i have to get the list of all those clients whose date of joining - current date equals to 30. I have a table in database where there is a …

Member Avatar for diafol
0
151
Member Avatar for zeeshan009

Hi All, I want to do pagination in php can any one tell how to do this?

Member Avatar for veedeoo
0
99
Member Avatar for zeeshan009

Hi All, When i am trying to open any php file by Macromedia Dreamweaver 8, i am getting an error. " Please reinstall your software" A problem was detected with your application. Please reinstall this software to correct the problem" I had reinstalled and installed it , but issue still …

Member Avatar for diafol
0
156
Member Avatar for zeeshan009

Hi All, I am developing a website in which i am selecting some values form database by a query When i am running query on PHPMyAdmin i am getting desired results but when i am using this query in actual PHP code, i am getting value of Last row. Can …

Member Avatar for gabrielcastillo
0
223
Member Avatar for zeeshan009

Hi All, I want to know how to write a php script that run in background in browser when anyone login.

Member Avatar for veedeoo
-1
186
Member Avatar for zeeshan009

Hi All, I am developing a fee management system in which i want to view unpaid fee of students. Can any one guide me how to to do this in php. I need a logic. Please guide me.

Member Avatar for diafol
-3
64
Member Avatar for zeeshan009

Hi i am developing Attendence mgt sys. and i have to insert name,section,class,status in database of n number of students. I am able to do listing by the code below: <?php @session_start(); include('config.php'); $sessionName = $_SESSION['NAME']; $sessionID = $_SESSION['UID']; if($sessionName == "" && $sessionID == "") { header('location:index.php'); } $class …

Member Avatar for diafol
0
416
Member Avatar for zeeshan009

<input type="hidden" id="" name="name[<?=$name;?>]"/><?=$name;?></input> .... <?php include('config.php'); @session_start(); $sessionName = $_SESSION['NAME']; $date = date('d-m-y'); $loc= $_POST['locationID']; $name = $_REQUEST['name']; $status = $_POST['status']; $class = $_POST['class']; $section = $_POST['section']; for( $i = 0; $i < count($loc); $i++ ) { $sql = "INSERT INTO tbl_attendence (fld_studentname,fld_status,fld_class,fld_section,fld_date,fld_takenby) VALUES ('$name','$status','$class','$section','$date','$sessionName') "; //echo $sql; exit; …

Member Avatar for zeeshan009
0
1K