PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
session_start();
$result=mysql_query("select loan_id from secure_loan where username = '".$_POST['username']." ' )")
// change the == to = (you are not comparing anything, you are assigning)
$_SESSION['uniqueid'] = $result;
?>