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)...
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)...
<?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...
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 !
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...