Recent content by Bella422

  1. B

    What does 'rb' mean in this php code? and 'ab' in the following php code?

    $fp = fopen ( 'test.txt', 'rb' ); $fp=fopen('test.txt', 'ab' );
  2. B

    What does 'rb' mean in this php code? and 'ab' in the following php code?

    $fp = fopen ( 'test.txt', 'rb' ); $fp=fopen('test.txt', 'ab' );
  3. B

    what does this php code mean.?

    while ($line = fgetcsv($fp,100,",")) { echo $line[0]. $line[1];
Back
Top