Jump to content

M-Queiroz

Members
  • Posts

    127
  • Joined

  • Last visited

1 Follower

Profile Information

  • Gender
    Male
  • Location
    Brazil
  • Interests
    Brazil Air

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

M-Queiroz's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. M-Queiroz

    erro

    classes erro >v nshahzad-phpVMS-v2.1.934-15-gc292c9d.zip Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 256 bytes) in /home/grupobra/public_html/ad/core/classes/ezdb/ezdb_mysql.class.php on line 273
  2. Ola is very good yes when he is ready for tests
  3. Ola is very good yes the more it is better either welcome
  4. esta é a mais resente pt 18/jul/2010 Portuguese1.xml (bloco de notas)
  5. <?php $conexao = mysql_connect('localhost', 'LOG', 'PSS'); mysql_select_db('BD', $conexao); ?> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Controle de Estoque - Empresas Figueiredo</title> <style media="all"> body { font-family: Arial, Helvetica, sans-serif; font-size: 12px; } .titulo_row { background: #575757; color: #FFFFFF; } .style2 {color: #FFFFFF} .style3 {color: #000000; } </style> </head> <center> <body> <h2><span style="color: rgb(0, 0, 255);">Os 10 melhores pousos do mes</span></h2> <?php $busca_produtos="SELECT p.code, p.pilotid, firstname, lastname, a.fullname, r.pilotid, landingrate, depicao, arricao FROM phpvms_pilots p left join phpvms_pireps r on p.pilotid = r.pilotid right join phpvms_aircraft a on a.id = r.aircraft WHERE year(r.submitdate) = year(now()) and month(r.submitdate) = month(now()) and landingrate < '0' ORDER BY landingrate desc LIMIT 0,10"; $exec_produtos = mysql_query($busca_produtos); // Executo a busca $nume_produtos = mysql_num_rows($exec_produtos); // Verifico o n�mero de linhas retornadas $cor = "#D5D5D5"; // Defino a segunda cor ?> <table width="630" border="0" cellspacing="0" cellpadding="2"> <tr class="titulo_row"> <td width="">Piloto</td> <td width="">Nome</td> <td width="43">Saida</td> <td width="43">Destino</td> <td width="">Equipamento</td> <td width="">Totidal Rate</td> </tr> <?php // Verifico se alguma linha foi retornada if($nume_produtos > 0) { // Monto o loop de informa��es com a matriz associativa $pinfo while($pinfo = mysql_fetch_assoc($exec_produtos)) { // Crio o IF que me retornar� a cor da vez if($cor == "#D5D5D5") { $cor = "#FFFFFF"; // Aqui � a primeira cor } else { $cor = "#D5D5D5"; } ?> <tr bgcolor="<?php echo $cor; ?>"> <td width=""><?php echo $pinfo['code']. "0". $pinfo['pilotid']; ?></td> <td width=""><?php echo $pinfo['firstname']. " ". $pinfo['lastname']; ?></td> <td width="8"><?php echo $pinfo['depicao']; ?></td> <td width="8"><?php echo $pinfo['arricao']; ?></td> <td width=""><?php echo $pinfo['fullname']; ?></td> <td width=""><?php echo $pinfo['landingrate']; ?></td> </tr> <?php } } ?> </table> <h2><span style="color: rgb(0, 0, 255);">Utimos voos</span></h2> <?php $busca_produtos1="SELECT * FROM phpvms_pilots p left join phpvms_pireps r on p.pilotid = r.pilotid right join phpvms_aircraft a on a.id = r.aircraft ORDER BY pirepid desc LIMIT 0,10"; $exec_produtos1 = mysql_query($busca_produtos1); // Executo a busca $nume_produtos1 = mysql_num_rows($exec_produtos1); // Verifico o n�mero de linhas retornadas $cor1 = "#D5D5D5"; // Defino a segunda cor ?> <table width="630" border="0" cellspacing="0" cellpadding="2"> <tr class="titulo_row"> <td width="70">Voo N°</td> <td width="43">Saida</td> <td width="43">Destino</td> <td width="">Piloto</td> <td width="">Aircraft</td> <td width="">Touch Down Rate</td> <td width="">Flight Time</td> <td width="">fuel</td> </tr> <?php // Verifico se alguma linha foi retornada if($nume_produtos1 > 0) { // Monto o loop de informa��es com a matriz associativa $pinfo while($pinfo1 = mysql_fetch_assoc($exec_produtos1)) { // Crio o IF que me retornar� a cor da vez if($cor1 == "#D5D5D5") { $cor1 = "#FFFFFF"; // Aqui � a primeira cor } else { $cor1 = "#D5D5D5"; } ?> <td> <tr bgcolor="<?php echo $cor1; ?>"> <td width="70"><a href="http://grupobrazilair.com/index.php/pireps/view/<?php echo $pinfo1['pirepid'];?>" target="_top"><?php echo $pinfo1['code']. " ". $pinfo1['flightnum']; ?></a></td> <td width="8"><?php echo $pinfo1['depicao']; ?></td> <td width="8"><?php echo $pinfo1['arricao']; ?></td> <td width=""><a href="http://grupobrazilair.com/index.php/profile/view/<?php echo $pinfo1['pilotid'];?>" target="_top"><?php echo $pinfo1['firstname']. " ". $pinfo1['lastname']; ?></a></td> <td width=""><?php echo $pinfo1['fullname']; ?></td> <td width=""><?php echo $pinfo1['landingrate']; ?></td> <td width=""><?php echo $pinfo1['flighttime']; ?></td> <td width=""><?php echo $pinfo1['fuelused']; ?></td> </tr> <?php } } ?> </table> <h2><span style="color: rgb(0, 0, 255);">Utimas Reservas</span></h2> <center> <?php $busca_bids="SELECT p.*, s.*, b.bidid as bidid, a.name as aircraft, a.registration, b.dateadded as dateadded FROM phpvms_schedules s, phpvms_bids b, phpvms_aircraft a, phpvms_pilots p WHERE b.routeid = s.id AND s.aircraft=a.id AND p.pilotid = b.pilotid ORDER BY b.bidid DESC LIMIT 0,05"; $exec_bids = mysql_query($busca_bids); // Executo a busca $nume_bids = mysql_num_rows($exec_bids); // Verifico o n�mero de linhas retornadas $cor = "#D5D5D5"; // Defino a segunda cor ?> <table width="630" border="0" cellspacing="0" cellpadding="2"> <tr class="titulo_row"> <td width="">Voo N°</td> <td width="43">Saida</td> <td width="43">Destino</td> <td width="">Aircraft</td> <td width="">Piloto</td> <td width="">Data</td> </tr> <?php // Verifico se alguma linha foi retornada if($nume_bids > 0) { // Monto o loop de informa��es com a matriz associativa $pinfo while($bidsin = mysql_fetch_assoc($exec_bids)) { // Crio o IF que me retornar� a cor da vez if($cor1 == "#D5D5D5") { $cor1 = "#FFFFFF"; // Aqui � a primeira cor } else { $cor1 = "#D5D5D5"; } ?> <td> <tr bgcolor="<?php echo $cor1; ?>"> <td width=""><?php echo $bidsin['code']. $bidsin['flightnum'] ?> </td> <td width="8"><?php echo $bidsin['depicao']; ?></td> <td width="8"><?php echo $bidsin['arricao']; ?></td> <td width=""><?php echo $bidsin['aircraft']. " " . $bidsin['registration']; ?></a></td> <td width=""><?php echo $bidsin['firstname']. " ". $bidsin['lastname']; ?></td> <td width=""><?php echo $bidsin['dateadded']; ?></td> </tr> <?php } } ?> </table> </body> </html> </center>
  6. It is open to direct would fix?
  7. hello Nabeel / index.php / PIREPs / view / i saw her was that the link is broken log is open and direct link is wrong View Log 07/03/2010 v beta but already so this one time would fix this as I do. Thank you for your time his work is very good that you have long been health intelligence to work on it as it does. link
  8. Now yes it was a mark of 100%, but no doubt would be all uppercase fields fill ICAO flight route number. I would like to thank her speed in which we attended problem solved thanks
  9. Yes when the server drops off is
  10. hello simpilot with a quick question would show only the airports that have an aircraft if it has not stopped it shows nothing on the list would be nicer
  11. sometimes spins all white and nothing closes kacaras flight and the pilot loses the server goes off the air because this maintenance would only open a window when the fs open several locks have to restart the pc like if you turn off the cable network several times you will see what I say erro impossivel conectar-se ao servidor remoto impossible to connect to remote server
  12. falls when the server is toast several window without stopping
  13. Hello I would like to inform that it is impossible to fly with KACARS, this locking FS Direct!
×
×
  • Create New...