Why would the following function not return a value: (both $lastname and
$firstname are defined)
function get_handle($lastname, $firstname)
{
$handle_guess=$lastname;
$handle=array();
$fp=fopen('../truelies/userdb', "r");
while ($d=fgetcsv($fp, 250, ";")) {
$handle[] = $d[0];
I am a Newbie at PHP
I am sure I am missing something small but...
I am trying to create a form selection box which an alphabetically sort
list of a unix group file.
The group file has the format groupname::groupnumber:
I have tried to create an array using the array=fgetcsv($fp, 30, ":")
whi
2 matches
Mail list logo