No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Hello, I wanna ask about scan card. Is there any way to disallow keyboard input and only allow scan card input to key in a field? FYI, I am using vbscript, html and javascript for this program. So, may be doing something with the javascript? How about limit the time … | |
Hello, I want to ask.. I have a website which is fine to be opened using any other browsers except IE7. In IE7, some of the functions do not work well. I tried using IE8 and it worked fine. Anybody knows the solution? Thank you | |
Hi, Does anyone know on how to convert vb.net to excel. I am new in this company and they are using Microsoft SQL Server Management Studio for their database. FYI, they are using stored procedure as well. Thank you | |
Re: Hi, I wanna ask you, how to generate excel file using html and php? We query the database based on user's input. This code is not working. Thank you <?php include 'admin_homepage.php' ?> <div id="sidebar1"> <b></b></br></br><img src="MMU_logo.jpg" width="180" height="150"/> <a href="admin_view_student.php" style="font-size:13px" >View Student</a> <a href="admin_new_student_reg.php" style="font-size:13px">Add Student</a> <a href="student_excel.php" … | |
Hi, I have this code. It is not working properly. Anybody may know the solution? Thank you [CODE]<?php include 'admin_homepage.php' ?> <div id="sidebar1"> <b></b><br /></br></br><img src="MMU_logo.jpg" width="180" height="150"/><br /> <a href="admin_view_student.php" style="font-size:13px" >View Student</a><br /> <a href="admin_new_student_reg.php" style="font-size:13px">Add Student</a><br /> <a href="student_excel.php" style="font-size:13px">Get Excel File</a><br /> <a href="student_mailing_list.php" style="font-size:13px">Get Mailing … | |
Re: you may try to use this code <?php { require_once "prerequisite.php"; $sql2 = mysql_query("SELECT * FROM student_registration ORDER BY stu_ID"); $count = mysql_num_fields($sql2); $header = ''; $data = ''; for ($i = 0; $i < $count; $i++) { $header .= mysql_field_name($sql2, $i)."\t"; } while($row = mysql_fetch_assoc($sql2)) { $line = ''; … |
The End.