Search results

  1. A

    Help with php coding!?

    here is the code <?php $x=mysql_connect("localhost", "root", ""); if(!$x) { echo "eroare conectare la mysql"; exit; } $nume=$_POST['user']; $parola=$_POST['parola']; $select="SELECT Nume FROM users WHERE Nume='$nume' AND Parola='$parola'"; $rez=mysql_query($select)...
  2. A

    Help with php coding!?

    here is the code <?php $x=mysql_connect("localhost", "root", ""); if(!$x) { echo "eroare conectare la mysql"; exit; } $nume=$_POST['user']; $parola=$_POST['parola']; $select="SELECT Nume FROM users WHERE Nume='$nume' AND Parola='$parola'"; $rez=mysql_query($select)...
  3. A

    Parse error: parse error in C:\EasyPHP5.3.0\www\login2.php on line 4 ?

    <?php require_once("db.php") if(isset($_POST['login'])) { $user = $_POST['user']; $password = $_POST['parola']; $cerere="select user from cont where user='$user' and parola='$parola'"; $rezultat=mysql_query($cerere); $rand=mysql_fetch_array($rezultat); if ($rand['user']; {echo "Numele si/sau...
  4. A

    Help with Flash CS4 ....?

    Does anybody know how to make a scrollbar for images ( something similar to cover-flow, i don't really want it that complex ) ? a link to a tutorial would be useful as well !
  5. A

    Buttons and links in flash website?

    hi, i have this flash website and i have a section where the text is too long , so i want to create multiple pages in the same section. Ex: in the Lessons section i have Previous page and Next page when i click the Next Page button i want it to take me to the next lesson the problem is that i...
Back
Top