index.php 981 B

123456789101112131415161718192021
  1. <?php
  2. include("../functions.php");
  3. $con = startdb();
  4. ?>
  5. <html>
  6. <head>
  7. </head>
  8. <body>
  9. <?php
  10. $res_post = mysqli_query($con, "SELECT id FROM post WHERE text_en = text_es OR text_eu = text_es OR text_en IS NULL OR text_eu IS null;");
  11. $res_activity = mysqli_query($con, "SELECT id FROM activity WHERE text_en = text_es OR text_eu = text_es OR text_en IS NULL OR text_eu IS null;");
  12. $res_gallery = mysqli_query($con, "SELECT id FROM photo WHERE description_en = description_es OR description_eu = description_es OR description_en IS NULL OR description_eu IS null;");
  13. ?>
  14. <ul>
  15. <li><a href="post/">Traducir posts</a> (<?php echo mysqli_num_rows($res_post); ?> posts sin traduccion)</li>
  16. <li><a href="activities/">Traducir actividades</a> (<?php echo mysqli_num_rows($res_activity); ?> actividades sin traduccion)</li>
  17. <li><a href="gallery/">Traducir fotos</a> (<?php echo mysqli_num_rows($res_gallery); ?> fotos sin traduccion)</li>
  18. </ul>
  19. </body>
  20. </html>