Search results

  1. S

    Invalid email address or password supplied

    when I try to login to my account I get this message Invalid email address or password supplied whilw both my email and password are correct and I used them to login to the forum
  2. S

    need php/mysql help

    this is the full code of image.php //image.php <?php mysql_connect("localhost", "root", "1234") or die(mysql_error()); mysql_select_db("test") or die(mysql_error()); $Fro = $_POST['from']; $Too = $_POST['to']; $check3 = mysql_query("SELECT * FROM data WHERE data.ID BETWEEN '$Fro' AND...
  3. S

    need php/mysql help

    I'm trying to draw points that firstly defined between two values at data.php using post method #data.php <?php : : ?> <img src="image.php"> <form action="data.php" method="post"> Between <INPUT type="TEXT" name="from"> And <INPUT type="TEXT" name="to"> <td colspan=5 <input...
Top