Click here to Skip to main content
15,893,904 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Putting Data Onto HTML Using JavaScript Pin
Nathan Minier12-Feb-18 1:24
professionalNathan Minier12-Feb-18 1:24 
GeneralRe: Putting Data Onto HTML Using JavaScript Pin
Valecia_cho18-Feb-18 9:01
Valecia_cho18-Feb-18 9:01 
GeneralRe: Putting Data Onto HTML Using JavaScript Pin
Nathan Minier20-Feb-18 1:28
professionalNathan Minier20-Feb-18 1:28 
QuestionHow to start a job listing,directory,ad site? Pin
savedlema22-Jan-18 11:13
savedlema22-Jan-18 11:13 
AnswerRe: How to start a job listing,directory,ad site? Pin
A_Griffin25-Jan-18 0:39
A_Griffin25-Jan-18 0:39 
QuestionNote to self Pin
#realJSOP21-Jan-18 3:00
mve#realJSOP21-Jan-18 3:00 
PraiseRe: Note to self Pin
Richard Deeming22-Jan-18 8:24
mveRichard Deeming22-Jan-18 8:24 
Questioni want to fix this error Pin
Gani19-Jan-18 23:06
Gani19-Jan-18 23:06 
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>

<div class="row">
	<div class="col-md-8">
		<h3>Data Pegawai</h3>
		<a class="btn btn-sm btn-success" href="">Tambah Data</a>
		<button class="btn btn-sm btn-default">Jumlah Data 89 </button>
	</div>

	<div class="col-md-4 col-md-offset-7">
    	<div class="input-group">
      		<input type="text" class="form-control" placeholder="Search for...">
      		
        		<button class="btn btn-default" type="button">Go!</button>
      		
    	</div><!-- /input-group -->
  	</div><!-- /.col-lg-6 -->
</div>
<br>
	<table class="table table-striped">
		<thead>
			<tr>
				<th>No</th>
				<th>Nama</th>
				<th>Alamat</th>
				<th>Telepon</th>
				<th>Username</th>
				<th>Status</th>
				<th>Opsi</th>
			</tr>
		</thead>
		<tbody>
		
		 <?php 
			$no = 1;
			$q = mysqli_query($koneksi, 'SELECT * FROM tb_kasir');
			while ($data = mysqli_fetch_array($q)) {
		?>	
			 
			 <tr>
		
			 	<td> <?php echo $no++; ?></td>
			 	<td> <?php echo $data['nama']; ?></td>
			 
			</tr>
			<?php } ?> 
		</tbody>
	</table>

</body>
</html>

QuestionRe: i want to fix this error Pin
Richard MacCutchan20-Jan-18 0:24
mveRichard MacCutchan20-Jan-18 0:24 
AnswerRe: i want to fix this error Pin
Qobil30-Jan-18 4:52
Qobil30-Jan-18 4:52 
QuestionDiscovery Regarding CSS in MVC - Tip Pin
#realJSOP17-Jan-18 3:58
mve#realJSOP17-Jan-18 3:58 
AnswerRe: Discovery Regarding CSS in MVC - Tip Pin
Richard Deeming17-Jan-18 4:41
mveRichard Deeming17-Jan-18 4:41 
QuestionHow to send WhatsApp Message using node.js Pin
Chhabra_Ankur16-Jan-18 23:32
Chhabra_Ankur16-Jan-18 23:32 
QuestionDrag one element over another one in javascript Pin
seppi12356613-Jan-18 20:47
seppi12356613-Jan-18 20:47 
AnswerRe: Drag one element over another one in javascript Pin
Richard Deeming15-Jan-18 8:03
mveRichard Deeming15-Jan-18 8:03 
QuestionNode JS Web Application Pin
Jun Jie Oi13-Jan-18 2:23
Jun Jie Oi13-Jan-18 2:23 
QuestionWhat Can Cause StackOverflow Exception To Be Thrown When Using Unity Container Pin
MadDashCoder12-Jan-18 4:27
MadDashCoder12-Jan-18 4:27 
Questionjquery and datatable plugins problem Pin
CodeBaker3-Jan-18 14:02
CodeBaker3-Jan-18 14:02 
AnswerRe: jquery and datatable plugins problem Pin
Vincent Maverick Durano5-Jan-18 2:55
professionalVincent Maverick Durano5-Jan-18 2:55 
AnswerRe: jquery and datatable plugins problem Pin
#realJSOP5-Jan-18 9:49
mve#realJSOP5-Jan-18 9:49 
QuestionBackground resize Pin
Member 136033252-Jan-18 3:07
Member 136033252-Jan-18 3:07 
AnswerRe: Background resize Pin
#realJSOP2-Jan-18 7:47
mve#realJSOP2-Jan-18 7:47 
GeneralRe: Background resize Pin
Member 136033252-Jan-18 20:06
Member 136033252-Jan-18 20:06 
GeneralRe: Background resize Pin
#realJSOP2-Jan-18 23:28
mve#realJSOP2-Jan-18 23:28 
AnswerRe: Background resize Pin
W Balboos, GHB11-Jan-18 2:32
W Balboos, GHB11-Jan-18 2:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.