Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for njagi

Hi Is there anyone who know How to capute a whole HTML file and convert itto Excel for example <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta name="description" content=""> <title>Fourth Year Computer Technology Time Table</title> </head> <body> <p>&nbsp;</p> <p>&nbsp;</p> <table cellspacing='4' cellpadding='4' border="1" align="center"> <tr> <td>Day</td> <td>Time</td> …

Member Avatar for ddellostritto
0
851
Member Avatar for sainiweb

I have this code which not give me desired result I want output as same http://www.asteraweb.co.uk/wrap_example.html same as like first container have I have this code but its working on no. of word and missing some words in the last <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> …

Member Avatar for fxm
0
161
Member Avatar for sainiweb

Hi I have problem with span tag padding paroblem can I do fix it with css or javascript here is code which hard coded for left and right padding I have ad &nbsp; and <br /> I want programatic way to fix it with css or java script <!DOCTYPE html …

Member Avatar for fxm
0
247
Member Avatar for sainiweb

Hi I ahve this code which is working on Chrome, Firefox and Safari But Its not working on IE Can any one help me <html> <script type="text/javascript" language="javascript"> function set_padd(){ var tt = document.getElementById("span_padding").innerHTML; var txt = new Array(); txt = tt.split("<br>"); var atxt = ''; for(var i = 1; …

Member Avatar for sainiweb
0
213
Member Avatar for sainiweb

<?php session_start(); /*if (!isset($_SESSION['user'])) { header("Location: index.php"); }*/ include ("include/header.php"); include ("include/dbc.php"); //require_once "Spreadsheet/Excel/Writer.php"; //define('FPDF_FONTPATH','./fpdf/font/'); //require('./fpdf/fpdf.php'); //require ('pdf.php'); $rowsPerPage = 10; $pageNum = 1; if(isset($_GET['page'])) { $pageNum = $_GET['page']; } $offset = ($pageNum - 1) * $rowsPerPage; $_SESSION['From']=$_REQUEST['From']; $_SESSION['To']=$_REQUEST['To']; $sql = "SELECT * FROM daily_material_record LIMIT $offset,$rowsPerPage"; $result = mysql_query($sql); …

0
54