Search results

  1. L

    How to pass a value inside do() while; using form post?

    Hello Below is my code. <?php $borrowUserId = userId(); $sql = "SELECT transaction.id as id, itemReturned, itemReturnedDate FROM transaction WHERE borrowUserId = '$borrowUserId' "; if ($shouldReturn = mysql_fetch_array($shouldReturns)) { echo...
  2. L

    What should I set to use InnoDB in phpMyAdmin?

    Hello, I have two tables, user and address. When a user signs up, I need to insert user general information to user table and his address into address table. - transaction concept. Currently I am using MyIsam table type as I used to use, but as I researched the transaction, many suggest to...
Back
Top