> printf ("%s", $row['client'],
$row['client']);
>
> print "".$row['client']."";
I've always found it easier NOT to use double quotes unless I have to;
avoids all those slashes and makes things easier to follow. Try:
print '' . $row['client'] .
'';
- Darryl
---
Does anyone know why this will not print double quotes around the OPTION VALUE? (2
scenerios)
printf ("%s", $row['client'], $row['client']);
print "".$row['client']."";
Copied from the source
Test 1
Test 2
Test 3
And here is what I am trying to get
Test 1
Test 2
Test 3
T