Jump to content

voip03

Members
  • Posts

    693
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

voip03's Achievements

Member

Member (2/5)

0

Reputation

  1. It is a validly named?
  2. death.announcement.contact.php The above file format is correct? thank you
  3. In the message variable you can insert table and inline CSS for styling the table OR CSS layout
  4. You didn't even read the question, did you? Yes
  5. 1. It is good to check username and password . 2. Can you echo $row['userlevel'];?
  6. <form action="test.php" method="post"> <input type="checkbox" name="apple" value="apple">apple <br> <input type="checkbox" name="orange" value="orange">orange <br> <input type="submit"> </form> <? foreach ($_POST as $key => $value ) echo "<br>$key is checked"; ?> Hope you can get the idea
  7. pl read this articles about session. http://php.about.com/od/advancedphp/ss/php_sessions.htm http://www.tizag.com/phpT/phpsessions.php http://phpsec.org/projects/guide/4.html Google it for admin login PHP... http://www.phpeasycode.com/adminlogin/
  8. The POST Method BEST for you. ref:http://www.tutorialspoint.com/php/php_get_post.htm
  9. <?php $s = "SELECT nome_curso, imagem_curso FROM cursos ORDER BY nome_curso"; $r = mysql_query($s); $n = mysql_num_rows($r); if($n !=0) { echo"<table width='750' border='1' cellspacing='0' cellpadding='1'><tr>"; while($row = mysql_fetch_assoc($r)) { echo "<td>". $row['nome_curso']."</td>"; echo "<td><img src='imagepath/images/". $row['imagem_curso'] ." ></td>"; } echo "</tr></table>"; } ?>
  10. <?php echo'<table width='750' border='1' cellspacing='0' cellpadding='1'> <tr> <td> This is my Table</td> </tr> </table>'; ?>
  11. <?php $url = 'http://www.mediafire.com/?niwske5oy33wzrz'; print_r(parse_url($url)); echo parse_url($url, PHP_URL_PATH); ?> http://au2.php.net/manual/en/function.parse-url.php
  12. Check this site http://koivi.com/ie-png-transparency/
  13. Passing variable values between pages session cookies URL Web Forms http://matthom.com/archive/2005/02/19/php-passing-variables-across-pages
×
×
  • 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.