i use MySQL in PHP. now all i want is to get the number of data (i.e the no. of rows) in a particular table and store it in a PHP variable. i want the SQL command!
Have you tried using $sql = " select count(*) from myTable "; ?
gotcha! tnx Rick!