[ PHPXref.com ] [ Generated: Sun Jul 20 19:19:23 2008 ] [ PBS Helpdesk 0.93 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> competence.php3 (source)

   1  <?php ;
   2  include  "init.php3";
   3  include  "environment.php3";
   4  include "$language.php3";
   5  
   6  
   7  mytop();
   8  echo "<form>
   9  <input type=\"button\" name=\"action\" value=\"$pbsl_close\" onClick=\"window.close()\">
  10  <form>";
  11  start_table(1);
  12  echo "<tr><th>$pbsl_competence</th><th>$pbsl_name</th><th>$pbsl_phone</th><th>Piepser</th><th>Handy</th><tr>";
  13  
  14  
  15  $command="select * from competence order by c_what";
  16  
  17   $res1 = mysql_query_wrap($command); 
  18  $i=0;
  19   while ($i < mysql_num_rows ($res1)) {
  20    $row = mysql_fetch_row($res1);
  21    echo  "<td>$row[1]</td><td>$row[2]</td><td>$row[3]</td><td>$row[4]</td><td>$row[5]</td></tr>";
  22    $i++;
  23  }
  24  end_table();    
  25  mybottom();
  26  
  27  
  28  


[ Powered by PHPXref - Served by Debian GNU/Linux ]