Hello... I am having just alittle trouble with this... I know it's
simple... Look at my comment for the problem I am having

<?php
        mysql_select_db($database_ideation, $ideation);
        $query_rsLastL = "SELECT * FROM logins WHERE user_id = '$UserID'
ORDER BY `date` DESC";
        $rsLastL = mysql_query($query_rsLastL, $ideation) or
die(mysql_error());
        $row_rsLastL = mysql_fetch_assoc($rsLastL);
        $totalRows_rsLastL = mysql_num_rows($rsLastL);
                        
// Prints the first row... I just want to print just the second row
                echo $row_rsLastL['date'];
                        
        mysql_free_result($rsLastL);
?>

Thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to