Forum: DaniWeb Community Feedback Oct 14th, 2009 |
| Replies: 91 Views: 7,656 Personally I'm never bothered so much by the user interface as long as the site content is presented in a nice and simple way that is readable by everyone. So far I think you are doing fine in the... |
Forum: PHP Oct 6th, 2009 |
| Replies: 4 Views: 236 How about adding a die statement to assist in debugging like so
$this->con=mysql_connect($server,$name,$pass) or die(mysql_error());
happy times! |
Forum: PHP Oct 6th, 2009 |
| Replies: 4 Views: 226 What you need is simply DHTML. Just like Gmail's attach another file, you need something like that which when clicked will add two text fields for item code and another one for serial no.
So the... |
Forum: PHP Jul 28th, 2009 |
| Replies: 4 Views: 252 <?php
$row_count = 0;
$columns = 3;
while ($row = mysql_fetch_assoc($result)) {
if ($row_count == $columns) {
echo "</tr><tr>"; |