Jump to content

arvnd86

New Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

arvnd86's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi to all, How to generate dynamic pdf report in php with tamil content. Kindly let me know how to achieve this thanks in advance.
  2. Hi,, If you have a unique id you can give it in check box value... <?php $conn=mysqli_connect("localhost","","","test"); echo"connected"; $query="SELECT * FROM student ORDER BY roll_no"; $res=mysqli_query($conn,$query); $row=(mysqli_fetch_array($res,MYSQLI_ASSOC)); echo "roll_no".$row['roll_no']; echo "subject".$row['subject']; echo "marks".$row['marks']."<br/>"; echo "<table border='1'>"; echo "<tr> <th>ROLL_NO</th> <th>SUBJECT</th> <th>MARKS</th> <th>Select</th> </tr>"; while($row = mysqli_fetch_array($res,MYSQL_ASSOC)) { echo"<tr><td>"; echo $row['roll_no']; echo "</td><td>"; echo $row['subject']; echo "</td><td>"; echo $row['marks']; echo "</td>"; echo "<td><input type=\"checkbox\" name=\"name\" value=\"$row[id]\"></td>"; echo "</tr>"; } echo "</table>"; ?>
  3. Hi all, Is the possible for set fixed table header with scrollbar vertical and horizontal ??? Please share your answers,
  4. Yes but i need to fetch local lan machine ip...
  5. Hi to all, How to capture client local machine ip using javascript or php code.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.